We are currently using CruiseControl.NET with NAnt 0.85 build scripts and while everything is working well, the log files are a little too verbose for my liking.
In particular, when deleting folders using the <delete>
task I always get a [delete] Deleting directory
entry in the log.
Fair enough but this task is run in a foreach
loop and results in a long list of entries (especially if the folders contained files - each deletion is reported) which is just cluttering the log and making it difficulty to read without endless scrolling. I've added numerous <echo>
tasks to report the scripts progress so don't really need all this 'fluff'.
I've used the verbose="false"
attribute on the <delete>
task and while this supressed the file deletion messages (which improved the log readability no end) the folder deletions are still reported. I've tried utilising the verbose
attribute on the foreach
but this made no difference.
Does anyone know how I can supress these messages or am I stuck with them .. ?