Turn down logging in DefaultListableBeanFactory

Reduce INFO level startup logging to DEBUG

Issue: SPR-10758
This commit is contained in:
Phillip Webb 2013-07-19 13:17:17 -07:00
parent 1a8f0d6a9e
commit b704d62aad
1 changed files with 2 additions and 2 deletions

View File

@ -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) {