Skip to content

Commit e08612f

Browse files
committed
add missing file
1 parent 1619c66 commit e08612f

File tree

1 file changed

+18
-0
lines changed
  • instrumentation/spring/spring-boot-autoconfigure/src/testLogbackAppender/resources

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
4+
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
5+
<encoder>
6+
<pattern>
7+
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
8+
</pattern>
9+
</encoder>
10+
</appender>
11+
<appender name="List" class="ch.qos.logback.core.read.ListAppender" />
12+
13+
<root level="INFO">
14+
<appender-ref ref="console"/>
15+
<appender-ref ref="List"/>
16+
</root>
17+
18+
</configuration>

0 commit comments

Comments
 (0)