I recently started using NoBannerLogger, but it has an undesirable side effect I don't really like: It seems to eat up empty lines. Below is a simple example, but I have another build file that forks another instance of Ant (thru <exec>, not <ant>... It's a long story, linked to the use of ant-contrib's <cc> task), which results in everything being crammed together, without the usual empty lines in between targets.
Does anyone know why? And how to fix it? Thanks, --DD P:\xyz\Jax> ant -emacs test Buildfile: build.xml test: Running com.lgc.jax.tools.junit.test.RegressionLineTest Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.031 sec Testsuite: com.lgc.jax.tools.junit.test.RegressionLineTest Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.031 sec Testcase: test_RegressionLine took 0 sec <snip/> BUILD SUCCESSFUL Total time: 2 seconds P:\xyz\Jax>ant -emacs -logger NoBannerLogger test Buildfile: build.xml test: Running com.lgc.jax.tools.junit.test.RegressionLineTest Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.015 sec Testsuite: com.lgc.jax.tools.junit.test.RegressionLineTest Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 0.015 sec Testcase: test_RegressionLine took 0.015 sec <snip message="The empty line is above the one just above!!!" /> BUILD SUCCESSFUL Total time: 2 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
