-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathlogback.xml
More file actions
28 lines (25 loc) · 864 Bytes
/
Copy pathlogback.xml
File metadata and controls
28 lines (25 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<configuration>
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="net.logstash.logback.encoder.LoggingEventCompositeJsonEncoder">
<providers>
<logLevel/>
<threadName/>
<pattern>
<pattern>
{
"class_name": "%logger{0}"
}
</pattern>
</pattern>
<message/>
<keyValuePairs/>
<stackTrace/>
</providers>
</encoder>
</appender>
<root level="${LOG_LEVEL:-INFO}">
<appender-ref ref="CONSOLE"/>
</root>
<logger name="org.apache.tika" level="INFO"/>
</configuration>