How do I make ANT verbose?
Solution 1:
To enable verbose output for ant:
ant -v
or
ant -verbose
Solution 2:
You can also enable logging on build.xml itself using task record. Here is documentation about it http://ant.apache.org/manual/Tasks/recorder.html
<record name="/output/build.log" loglevel="verbose" action="start"/>
It´s simple and works! :)