From 1e8986eeb990e1460d97ecb3fed3187d243bbb11 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 23 Jan 2018 17:47:39 -0500 Subject: [PATCH] Decrease logging level to the WARN https://build.spring.io/browse/AMQP-SA17X-120 There is some race condition in the Log4J that log messages are processed on a wrong thread. * Decrease logging level to the `WARN` for the `spring-rabbit` to minimize the level of vulnerability for the `AmqpAppenderIntegrationTests` --- spring-rabbit/src/test/resources/log4j-amqp.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-rabbit/src/test/resources/log4j-amqp.properties b/spring-rabbit/src/test/resources/log4j-amqp.properties index 8c28a2af..c577e5b6 100644 --- a/spring-rabbit/src/test/resources/log4j-amqp.properties +++ b/spring-rabbit/src/test/resources/log4j-amqp.properties @@ -31,6 +31,6 @@ log4j.appender.amqpXml.contentType=text/xml log4j.category.org.springframework.amqp.rabbit.log4j=DEBUG, amqp log4j.category.org.springframework.amqp.rabbit.logging.customLayout=DEBUG, amqpXml -log4j.category.org.springframework.amqp.rabbit=DEBUG +log4j.category.org.springframework.amqp.rabbit=WARN log4j.category.org.springframework.beans.factory=INFO