[utilities COMMIT] /spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProces...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Aug 7 12:18:40 EDT 2014
Author: rdw
Date: Thu Aug 7 12:18:40 2014
New Revision: 657
URL: http://svn.shibboleth.net/view/utilities?rev=657&view=rev
Log:
Better logging of the message when a bean's ID != the bean name
Modified:
spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java
Modified: spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java
URL: http://svn.shibboleth.net/view/utilities/spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java?rev=657&r1=656&r2=657&view=diff
==============================================================================
--- spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java (original)
+++ spring-extensions/trunk/src/main/java/net/shibboleth/ext/spring/config/IdentifiableBeanPostProcessor.java Thu Aug 7 12:18:40 2014
@@ -43,7 +43,8 @@
if (component.getId().equals(beanName)) {
log.debug("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 '{}'", beanName);
+ log.debug("The 'id' property is not the same as the 'id' attribute for bean '{}'!='{}'",
+ component.getId(), beanName);
}
}
}
More information about the commits
mailing list