fixed the fact that we were logging value3 when we meant to log value4.
This commit is contained in:
Scott Battaglia 2010-11-15 04:17:50 +00:00
parent c6b1bc775a
commit 1abdee8399
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public abstract class AbstractConfigurationFilter implements Filter {
final String value4 = loadFromContext(context, "java:comp/env/cas/" + propertyName);
if (CommonUtils.isNotBlank(value4)) {
log.info("Property [" + propertyName + "] loaded from JNDI with value [" + value3 + "]");
log.info("Property [" + propertyName + "] loaded from JNDI with value [" + value4 + "]");
return value4;
}