19 lines
656 B
XML
19 lines
656 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>
|
|
|
|
<logger name="chapters.configuration" level="INFO"/>
|
|
|
|
<!-- Strictly speaking, the level attribute is not necessary since -->
|
|
<!-- the level of the root level is set to DEBUG by default. -->
|
|
<root level="DEBUG">
|
|
<appender-ref ref="STDOUT" />
|
|
</root>
|
|
|
|
</configuration> |