Is it possible to capture the warnings that Javadoc prints when run via the ant task? I don't see an output attribute such as the one in the task. There seem to be warnings that Checkstyle just isn't catching and it'd be nice to snag that output in a file.
Seems strange this wouldn't be capturable, hopefully I'm missing something obvious.
~*~*~*~ EDIT (answer below) ~*~*~*~
It would appear the Ant <record> task is exactly what I was looking for. See the Ant docs.
<target name="generate.docs">
<record name="javadoc.log" action="start"/>
<javadoc ... />
<record name="javadoc.log" action="stop"/>
<target/>