diff --git a/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java b/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java index 501cc17f983..1bae434ce8e 100644 --- a/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java +++ b/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java @@ -226,7 +226,7 @@ final class PostProcessorRegistrationDelegate { String[] postProcessorNames = beanFactory.getBeanNamesForType(BeanPostProcessor.class, true, false); - // Register BeanPostProcessorChecker that logs an info message when + // Register BeanPostProcessorChecker that logs a warn message when // a bean is created during BeanPostProcessor instantiation, i.e. when // a bean is not eligible for getting processed by all BeanPostProcessors. int beanProcessorTargetCount = beanFactory.getBeanPostProcessorCount() + 1 + postProcessorNames.length; @@ -384,7 +384,7 @@ final class PostProcessorRegistrationDelegate { /** - * BeanPostProcessor that logs an info message when a bean is created during + * BeanPostProcessor that logs a warn message when a bean is created during * BeanPostProcessor instantiation, i.e. when a bean is not eligible for * getting processed by all BeanPostProcessors. */