-------- Original Message  --------
Subject: How to show the current, real executed commands in an ANT script?
From: Ben Stover <[email protected]>
To: Ant Users <[email protected]>
Date: 03.08.2010 15:28

> During the execution of an Ant script a couple of real commands with real 
> parameter values e.g.
> for javac, jar,.... are executed.
> 
> How can I show the real, current, final commands at the command 
> prompt/terminal/log file ?
> 
> Ben

get a chatty log with either loglevel -verbose | -debug, means try
ant -verbose -f yourbuild.xml ..
ant -debug -f yourbuild.xml ..

which adjusts the loglevel for your whole build or better IMO
use setloglevel [1] to shed light on specific sections of your build


<project ...>
....
<setloglevel level="verbose|debug"/>
 your stuff you want to
 know more details..
<!-- use normal loglevel again -->
<setloglevel level="info"/>
....
</project>


Regards, Gilbert

[1]
http://marc.info/?l=ant-user&m=125201552004975&w=2
http://marc.info/?l=ant-user&m=115504180503962&w=2



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to