Browse Source
This commit also adds a test so that we can catch this problem hopefully sooner in the future. Closes gh-42006pull/42056/head
3 changed files with 33 additions and 5 deletions
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<configuration> |
||||
<include resource="org/springframework/boot/logging/logback/defaults.xml"/> |
||||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> |
||||
<encoder> |
||||
<pattern>[%p] - %m%n</pattern> |
||||
</encoder> |
||||
</appender> |
||||
<root level="INFO"> |
||||
<appender-ref ref="CONSOLE" /> |
||||
</root> |
||||
</configuration> |
||||
Loading…
Reference in new issue