From 1abdee839978c72c512cd981782b91638d1de795 Mon Sep 17 00:00:00 2001 From: Scott Battaglia Date: Mon, 15 Nov 2010 04:17:50 +0000 Subject: [PATCH] CASC-133 fixed the fact that we were logging value3 when we meant to log value4. --- .../org/jasig/cas/client/util/AbstractConfigurationFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cas-client-core/src/main/java/org/jasig/cas/client/util/AbstractConfigurationFilter.java b/cas-client-core/src/main/java/org/jasig/cas/client/util/AbstractConfigurationFilter.java index 2e2fdfb..1db5838 100644 --- a/cas-client-core/src/main/java/org/jasig/cas/client/util/AbstractConfigurationFilter.java +++ b/cas-client-core/src/main/java/org/jasig/cas/client/util/AbstractConfigurationFilter.java @@ -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; }