Re: how to NOT log "WARNING: Parameters: Invalid chunk ignored." messages

2008-04-07 Thread Adrian Woodhead
OK, so I got this to work by modifying my JRE's logging.properties file and adding this line: org.apache.tomcat.util.http.Parameters.level = SEVERE (ERROR is a log4j concept, SEVERE is for java logging). When I put this exact same line just in tomcat's conf/logging.properties file it had no e

Re: how to NOT log "WARNING: Parameters: Invalid chunk ignored." messages

2008-04-04 Thread Adrian Woodhead
Good point, I overlooked the .level at the end (I'm so used to log4j). So I tried what you suggested at the end of my logging.properties in tomcat/conf like so: org.apache.tomcat.util.http.Parameters.level = ERROR I then restarted tomcat and I still get this in the logs: 04-Apr-2008 18:42:12

Re: how to NOT log "WARNING: Parameters: Invalid chunk ignored." messages

2008-04-04 Thread Mark Thomas
Adrian Woodhead wrote: org.apache.tomcat.util.http.Parameters = ERROR With no luck. I even tried modifying the JDK's logging properties in JAVA_HOME/jre/lib/logging.properties to also contain that line. Again, no luck. We are running tomcat 6.0.16. How do I do this? I am only going from th