Browse Source
1. Remove space before `/>` to keep consistency. 2. Capitalize `filters` for Log4j2. 3. Uppercase log level to keep consistency. See gh-43322pull/43494/head
13 changed files with 48 additions and 48 deletions
@ -1,7 +1,7 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<configuration> |
<configuration> |
||||||
<include resource="org/springframework/boot/logging/logback/base.xml" /> |
<include resource="org/springframework/boot/logging/logback/base.xml"/> |
||||||
<root level="INFO"> |
<root level="INFO"> |
||||||
<appender-ref ref="CONSOLE" /> |
<appender-ref ref="CONSOLE"/> |
||||||
</root> |
</root> |
||||||
</configuration> |
</configuration> |
||||||
|
|||||||
@ -1,8 +1,8 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<configuration> |
<configuration> |
||||||
<include resource="org/springframework/boot/logging/logback/base.xml" /> |
<include resource="org/springframework/boot/logging/logback/base.xml"/> |
||||||
<logger name="smoketest.logback" level="DEBUG" /> |
<logger name="smoketest.logback" level="DEBUG"/> |
||||||
<springProfile name="staging"> |
<springProfile name="staging"> |
||||||
<logger name="smoketest.logback" level="TRACE" /> |
<logger name="smoketest.logback" level="TRACE"/> |
||||||
</springProfile> |
</springProfile> |
||||||
</configuration> |
</configuration> |
||||||
|
|||||||
Loading…
Reference in new issue