Turn down logging in DefaultListableBeanFactory
Reduce INFO level startup logging to DEBUG Issue: SPR-10758
This commit is contained in:
parent
1a8f0d6a9e
commit
b704d62aad
|
@ -609,8 +609,8 @@ public class DefaultListableBeanFactory extends AbstractAutowireCapableBeanFacto
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void preInstantiateSingletons() throws BeansException {
|
public void preInstantiateSingletons() throws BeansException {
|
||||||
if (this.logger.isInfoEnabled()) {
|
if (this.logger.isDebugEnabled()) {
|
||||||
this.logger.info("Pre-instantiating singletons in " + this);
|
this.logger.debug("Pre-instantiating singletons in " + this);
|
||||||
}
|
}
|
||||||
List<String> beanNames;
|
List<String> beanNames;
|
||||||
synchronized (this.beanDefinitionMap) {
|
synchronized (this.beanDefinitionMap) {
|
||||||
|
|
Loading…
Reference in New Issue