24 lines
918 B
XML
Executable File
24 lines
918 B
XML
Executable File
<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>
|
|
|
|
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
|
<level>DEBUG</level>
|
|
</filter>
|
|
</appender>
|
|
|
|
<!-- Insert the current time formatted as "yyyyMMdd'T'HHmmss" under
|
|
the key "bySecond" into the logger context. This value will be
|
|
available to all subsequent configuration elements. -->
|
|
<timestamp key="bySecond" datePattern="yyyyMMdd'T'HHmmss"/>
|
|
|
|
<!-- Raise log level here if you don't want to see noisy log output -->
|
|
<root level="INFO">
|
|
<appender-ref ref="STDOUT"/>
|
|
</root>
|
|
</configuration> |