diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java b/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java index 450f11a5ce6..cb84792cb2b 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java @@ -448,8 +448,8 @@ public class DefaultSingletonBeanRegistry extends SimpleAliasRegistry implements } public void destroySingletons() { - if (logger.isInfoEnabled()) { - logger.info("Destroying singletons in " + this); + if (logger.isDebugEnabled()) { + logger.debug("Destroying singletons in " + this); } synchronized (this.singletonObjects) { this.singletonsCurrentlyInDestruction = true;