-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathlogback.xml
More file actions
21 lines (19 loc) · 718 Bytes
/
logback.xml
File metadata and controls
21 lines (19 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!--
This is the logback configuration file that is picked up by the entire project
when compiled/run the root maven POM
-->
<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>-%highlight(%-5level) %d{HH:mm:ss.SSS} [%thread] %logger{36} - %cyan(%marker) %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT" />
</root>
<shutdownHook class="ch.qos.logback.core.hook.DefaultShutdownHook">
<delay>100</delay>
</shutdownHook>
</configuration>