Turn down logging in DefaultSingletonBeanRegistry
Reduce INFO level destroy logging to DEBUG Issue: SPR-10758
This commit is contained in:
parent
4390591b68
commit
1678eaaed0
|
@ -448,8 +448,8 @@ public class DefaultSingletonBeanRegistry extends SimpleAliasRegistry implements
|
||||||
}
|
}
|
||||||
|
|
||||||
public void destroySingletons() {
|
public void destroySingletons() {
|
||||||
if (logger.isInfoEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.info("Destroying singletons in " + this);
|
logger.debug("Destroying singletons in " + this);
|
||||||
}
|
}
|
||||||
synchronized (this.singletonObjects) {
|
synchronized (this.singletonObjects) {
|
||||||
this.singletonsCurrentlyInDestruction = true;
|
this.singletonsCurrentlyInDestruction = true;
|
||||||
|
|
Loading…
Reference in New Issue