Change INFO to DEBUG log level for lazy init proxy

It seems like too much information to log this for every lazy
init proxy.
This commit is contained in:
Dave Syer
2022-03-21 08:55:57 +00:00
committed by GitHub
parent e71d6aca56
commit fbd1d70ee6

View File

@@ -79,7 +79,7 @@ class GuiceAutowireCandidateResolver extends ContextAnnotationAutowireCandidateR
}
catch (NoSuchBeanDefinitionException ex) {
if (ex.getResolvableType() != null) {
this.logger.info(String.format("Use just in time binding for %s in bean: %s",
this.logger.debug(String.format("Using just in time binding for %s in bean: %s",
ex.getResolvableType().getType().getTypeName(), beanName));
}
return true;