Skip to content

Commit b704d62

Browse files
committed
Turn down logging in DefaultListableBeanFactory
Reduce INFO level startup logging to DEBUG Issue: SPR-10758
1 parent 1a8f0d6 commit b704d62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,8 +609,8 @@ protected boolean isBeanEligibleForMetadataCaching(String beanName) {
609609

610610
@Override
611611
public void preInstantiateSingletons() throws BeansException {
612-
if (this.logger.isInfoEnabled()) {
613-
this.logger.info("Pre-instantiating singletons in " + this);
612+
if (this.logger.isDebugEnabled()) {
613+
this.logger.debug("Pre-instantiating singletons in " + this);
614614
}
615615
List<String> beanNames;
616616
synchronized (this.beanDefinitionMap) {

0 commit comments

Comments
 (0)