You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2009/01/29 05:11:28 UTC

svn commit: r738750 - /incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java

Author: lhazlewood
Date: Thu Jan 29 04:11:27 2009
New Revision: 738750

URL: http://svn.apache.org/viewvc?rev=738750&view=rev
Log:
JSEC-50 - changed log level to debug

Modified:
    incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java

Modified: incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java?rev=738750&r1=738749&r2=738750&view=diff
==============================================================================
--- incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java (original)
+++ incubator/jsecurity/trunk/web/src/org/jsecurity/web/attr/CookieAttribute.java Thu Jan 29 04:11:27 2009
@@ -243,8 +243,8 @@
         Cookie cookie = getCookie(toHttp(request), getName());
         if (cookie != null && cookie.getMaxAge() != 0) {
             stringValue = cookie.getValue();
-            if (log.isInfoEnabled()) {
-                log.info("Found string value [" + stringValue + "] from HttpServletRequest Cookie [" + getName() + "]");
+            if (log.isDebugEnabled()) {
+                log.debug("Found string value [" + stringValue + "] from HttpServletRequest Cookie [" + getName() + "]");
             }
             value = fromStringValue(stringValue);
         } else {