Hi, I have a routine in 'tearDown' which uses concat to place the test logs in a file:
<concat destfile="${temp.file}">
<au:logcontent/>
</concat>
This works. But, everything in the log is one long string. Entries are not
separated by cr+lf.
For example, if I have this in a test:
<echo message="foo"/>
<echo message="bar"/>
The log will have:
foobar
How can I make the lines be separated like normal "echo" output would be?
TIA,
-T
