CASC-133
fixed the fact that we were logging value3 when we meant to log value4.
This commit is contained in:
parent
c6b1bc775a
commit
1abdee8399
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue