config file that set logging to stdout and level to Error. Modified unittest target used by travis-ci to use new logback config file to reduce clutter in unittest output. Commented out superfluous System.println's from various unit tests to also reduce clutter.
15 lines
414 B
XML
15 lines
414 B
XML
<configuration>
|
|
|
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
<!-- encoders are assigned the type
|
|
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
|
|
<encoder>
|
|
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<root level="ERROR">
|
|
<appender-ref ref="STDOUT" />
|
|
</root>
|
|
</configuration>
|