Bug 39802 - Have "quiet" attribute for more file-based tasks
Summary: Have "quiet" attribute for more file-based tasks
Status: NEW
Alias: None
Product: Ant
Classification: Unclassified
Component: Core tasks (show other bugs)
Version: 1.6.5
Hardware: Other other
: P2 enhancement with 1 vote (vote)
Target Milestone: ---
Assignee: Ant Notifications List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-13 17:22 UTC by David Corley
Modified: 2013-03-28 11:00 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Corley 2006-06-13 17:22:00 UTC
Basically I think allowing the user to specify whether or not they want to see
every file being zipped/unzipped/copied/moved is a good idea. The zip and copy
tasks are taking up a lot of unnecessary space in my build log because of
logging individual file operations. Whats worse, the delete task has the option
(verbose), but it doesn't work!
Comment 1 Mathieu Champlon 2013-03-28 11:00:52 UTC
Alternatively there is a <quiet> task implementation here : https://sourceforge.net/p/taskcall/code/21/tree/trunk/quiet/src/main/Quiet.java
It makes it possible to filter the log level when invoking nested tasks, for instance :
    <quiet level="warn">
      <echo level="info">Ok !</echo>
    </quiet>
Will effectively not log anything.