Set the default log level for tests to WARN.

This commit is contained in:
Jon Chambers 2020-07-06 14:25:17 -04:00 committed by Jon Chambers
parent c03699fc5b
commit 42c797ee97
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="warn">
<appender-ref ref="STDOUT" />
</root>
</configuration>