Reputation: 11
When I run my build file, it always shows the target name.
For example, in my build file if I have targets A
, B
, C
.
Then on when I type the command ant A
, it shows
A: <...whatever>
How do I avoid displaying the A
?
Any help is very much appreciated.
Upvotes: 0
Views: 822
Reputation:
A few options:
Upvotes: 1
Reputation: 3843
You might also have a look at the following blog entry http://codefeed.com/blog/?p=82. The author provides some code for a custom task to set the loglevel in a build script. This way you can enable and disable log output for specific operations.
Upvotes: 0