Log ConfigurationProperties bean at DEBUG level. (#237)

This commit is contained in:
Brian Lowe 2021-06-09 17:10:57 +03:00 committed by GitHub
parent 1720272155
commit 1d89cbc908
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ public abstract class ConfigurationProperties {
throw new NullPointerException("bean may not be null.");
}
context.setAttribute(ATTRIBUTE_NAME, bean);
log.info(bean);
log.debug(bean);
}
/** Package access, so unit tests can call it. */