JSEC-50 - changed log level to debug

git-svn-id: https://svn.apache.org/repos/asf/incubator/jsecurity/trunk@738750 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/web/src/org/jsecurity/web/attr/CookieAttribute.java b/web/src/org/jsecurity/web/attr/CookieAttribute.java
index 4666ee3..d23a365 100644
--- a/web/src/org/jsecurity/web/attr/CookieAttribute.java
+++ b/web/src/org/jsecurity/web/attr/CookieAttribute.java
@@ -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 {