* INT-4376: Upgage to Log4J 2 JIRA: https://jira.spring.io/browse/INT-4376 * Deprecate Log4J 1.x components in favor of newly added a `Log4j2LevelAdjuster` JUnit `@Rule` * Update all the logging configuration to Log4J 2 * Polishing after testing
16 lines
448 B
XML
16 lines
448 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Configuration status="WARN">
|
|
<Appenders>
|
|
<Console name="STDOUT" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="%d %p [%t] [%c] - %m%n" />
|
|
</Console>
|
|
</Appenders>
|
|
<Loggers>
|
|
<Logger name="org.springframework.integration" level="warn"/>
|
|
<Logger name="org.springframework.integration.syslog" level="warn"/>
|
|
<Root level="warn">
|
|
<AppenderRef ref="STDOUT" />
|
|
</Root>
|
|
</Loggers>
|
|
</Configuration>
|