Can anyone suggest to me the best way to capture the output from an ANT command?

I'm writing some routing tests for sun spot devices. The command itself returns network statistics. I'm trying to write something which will dump all these results into a more visual application.

I'm on Windows Vista.

Thanks

link|improve this question

75% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Simply use the "-verbose" flag and designate a file for the command line output using ">"?

For example:

ant -verbose > output.txt
link|improve this answer
feedback

you could simply use the ant recorder task:

<record name="build.log"> </record>

this has the advantage of having the output written both to the screen and to the log file, which isn't the case when doing output redirection ant debug > build.log or calling ant with the -logfile option.

link|improve this answer
unfortunately it appears that this method does not record the final cause for build failures, which limits its usefulness. – ricosrealm May 9 at 19:10
feedback

Use -logfile <file> option to write the output to a file. Like @jespere said, you can get even more control by implementing your own logger or listener.

link|improve this answer
feedback

You can define a custom Ant logger which will receive all Ant output. With that you can do whatever you want with the output.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.