GH-1317: Change Shutdown Ignored Log to Debug

Resolves https://github.com/spring-projects/spring-amqp/issues/1317
This commit is contained in:
Gary Russell
2021-04-02 16:41:25 -04:00
parent 866868cd5d
commit fad17a3f9a

View File

@@ -1281,7 +1281,8 @@ public abstract class AbstractMessageListenerContainer extends RabbitAccessor
public void shutdown() {
synchronized (this.lifecycleMonitor) {
if (!isActive()) {
logger.info("Shutdown ignored - container is not active already");
logger.debug("Shutdown ignored - container is not active already");
this.lifecycleMonitor.notifyAll();
return;
}
this.active = false;