Bugs item #1189300, was opened at 2005-04-25 10:05 Message generated for change (Comment added) made by maliger You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1189300&group_id=31650
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Tasks Group: 0.85 Status: Open Resolution: None Priority: 5 Submitted By: IRON (imakowski) Assigned to: Nobody/Anonymous (nobody) Summary: Verbose doesn't work properly!!! Initial Comment: Verbose on tasks doesn't work properly on 0.85-rc3 my build file looks like this: <project name="test" xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd"> <target name="PathTest" verbose="false"> <mkdir dir="aaa" verbose="false" /> <delete dir="aaa" verbose="false"/> </target> </project> I type: NAnt.exe PathTest in the console and this message appears: PathTest: [mkdir] Creating directory 'D:\aaa'. [delete] Deleting directory 'D:\aaa'. i think there should not be this messages if i set verbose to false (the same issue appears when XmlLogger is used) This issue is very important when we have big solution and a lot of tasks is executed (large log file) ---------------------------------------------------------------------- Comment By: Martin Aliger (maliger) Date: 2005-06-13 19:24 Message: Logged In: YES user_id=655297 No - Verbose flag just enable you to extend information from task. There is no way how to suppress messages via this attribute. btw: verbose="false" have no effect at all. When run in verbose mode (nant -v) this concrete task is still in verbose mode. This could be considered bug but I'm not sure. But I agree with you that there should be way how to suppress messages. Simple publishing of Threshold property (which is currently only program-assignable) could be enough. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=402868&aid=1189300&group_id=31650 ------------------------------------------------------- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge track? If you want to score the big prize, get to know the little guy. Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20 _______________________________________________ nant-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nant-developers
