Turn down logging in DefaultSingletonBeanRegistry

Reduce INFO level destroy logging to DEBUG

Issue: SPR-10758
This commit is contained in:
Phillip Webb 2013-07-24 13:49:07 -07:00
parent 4390591b68
commit 1678eaaed0
1 changed files with 2 additions and 2 deletions

View File

@ -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;