-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlogback-spring.xml
More file actions
23 lines (18 loc) · 883 Bytes
/
logback-spring.xml
File metadata and controls
23 lines (18 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/defaults.xml" />
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
<include resource="org/springframework/boot/logging/logback/structured-file-appender.xml" />
<appender name="ThrottledConsole" class="be.dnsbelgium.logback.ThrottlingAppender">
<bufferSize>50</bufferSize>
<maxMessagesToEmitAfterStartUp>50000</maxMessagesToEmitAfterStartUp>
<maxMessagesToEmitAfterWakeUp>2000</maxMessagesToEmitAfterWakeUp>
<!-- wake up every 2 minutes -->
<maxSleepMillis>120000</maxSleepMillis>
<appender-ref ref="CONSOLE" />
</appender>
<root level="INFO">
<appender-ref ref="FILE" />
<appender-ref ref="ThrottledConsole" />
</root>
</configuration>