BAEL-7674: Let's make sure our logging configuration has the same pattern

This commit is contained in:
sachin
2018-08-21 18:22:53 -04:00
parent 6e1e6bf771
commit fb0023286a
64 changed files with 86 additions and 66 deletions

View File

@@ -1,5 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<logger name="org.springframework" level="ERROR"/>
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
# Pattern of log message for console appender
<Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</Pattern>
</layout>
</appender>
<logger name="org.springframework" level="ERROR"/>
<root level="INFO">
<appender-ref ref="stdout" />
</root>
</configuration>