Author: kkolinko
Date: Mon Dec 26 00:04:39 2011
New Revision: 1224663

URL: http://svn.apache.org/viewvc?rev=1224663&view=rev
Log:
Reduce log level for message for hitting parameter count limit from warn to 
info.
I am not sure that UserDataHelper needs to be applied here.
Maybe use a separate UserDataHelper instance?

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/http/Parameters.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/http/Parameters.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/http/Parameters.java?rev=1224663&r1=1224662&r2=1224663&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/http/Parameters.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/http/Parameters.java Mon Dec 26 
00:04:39 2011
@@ -381,7 +381,7 @@ public final class Parameters {
                     // Hitting limit stops processing further params but does
                     // not cause request to fail.
                     parseFailed = true;
-                    log.warn(ise.getMessage());
+                    log.info(ise.getMessage());
                     break;
                 }
             } catch (IOException e) {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to