Details
-
Bug
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
Low
Description
logback-tools.xml is configured incorrectly in that it doesn't send output to System.err as it appears to want to do.
<appender name="STDERR" target="System.err" class="ch.qos.logback.core.ConsoleAppender">
should be
<appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender"> <target>System.err</target>
As a result output goes to System.out
Attaching a patch