[spring-extensions] branch main updated: Lower logging level for mismatched IDs.
Scott Cantor
cantor.2 at osu.edu
Tue Nov 3 21:25:45 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository spring-extensions.
View the commit online:
http://git.shibboleth.net/view/?p=spring-extensions.git;a=commit;h=8fbe587809b7f4cfc4f277d9789f3b017feb95b6
The following commit(s) were added to refs/heads/main by this push:
new 8fbe587 Lower logging level for mismatched IDs.
8fbe587 is described below
commit 8fbe587809b7f4cfc4f277d9789f3b017feb95b6
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Nov 3 16:25:43 2020 -0500
Lower logging level for mismatched IDs.
---
.../shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java b/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java
index b791142..91f7df6 100644
--- a/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java
+++ b/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java
@@ -41,9 +41,9 @@ public class IdentifiableBeanPostProcessor implements BeanPostProcessor {
component.setId(beanName);
} else if (log.isDebugEnabled()) {
if (component.getId().equals(beanName)) {
- log.debug("The 'id' property is redundant for bean with 'id' attribute '{}'", beanName);
+ log.trace("The 'id' property is redundant for bean with 'id' attribute '{}'", beanName);
} else {
- log.debug("The 'id' property is not the same as the 'id' attribute for bean '{}'!='{}'",
+ log.trace("The 'id' property is not the same as the 'id' attribute for bean '{}'!='{}'",
component.getId(), beanName);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list