-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathlogback.xml
More file actions
16 lines (13 loc) · 698 Bytes
/
logback.xml
File metadata and controls
16 lines (13 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<configuration>
<conversionRule conversionWord="msg" class="com.github.stickerifier.stickerify.logger.MessageHighlighter"/>
<conversionRule conversionWord="ex" class="com.github.stickerifier.stickerify.logger.ExceptionHighlighter"/>
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%highlight([%d{"dd/MM/YYYY HH:mm:ss.SSS' CET'", CET}] %-5level) %boldCyan([%-10t] %-11logger{0}) %boldYellow(-) %msg%n%red(%ex)</pattern>
</encoder>
</appender>
<root level="${LOG_LEVEL:-info}">
<appender-ref ref="CONSOLE"/>
</root>
<logger name="org.apache.tika" level="info" />
</configuration>