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
|
||||
public void preInstantiateSingletons() throws BeansException {
|
||||
if (this.logger.isInfoEnabled()) {
|
||||
this.logger.info("Pre-instantiating singletons in " + this);
|
||||
if (this.logger.isDebugEnabled()) {
|
||||
this.logger.debug("Pre-instantiating singletons in " + this);
|
||||
}
|
||||
List<String> beanNames;
|
||||
synchronized (this.beanDefinitionMap) {
|
||||
|
|
Loading…
Reference in New Issue