Disable “WARNING: Parameters: Invalid chunk ignored.” messages in Tomcat log
To disable this message you need to modify logging properties file.
If you have logging.properties in your tomcat/conf folder then make changes there. Otherwise modify jre’s file.
If you have logging.properties in your tomcat/conf folder then make changes there. Otherwise modify jre’s file.
Add to the end of /usr/local/java/jre/lib/logging.properties this line:
org.apache.tomcat.util.http.Parameters.level = SEVERE
Restart tomcat.
The reason for this message is some problem with url’s parameters format, like && in the begining of parameters etc. It is harmless, tomcat will process parameters anyway.
Another nice feature to reduce amount of information in catalina.out file is to redirect system output from catalina.out to web application log. Add swallowOutput=”true” to the context like this:
[root@mytomcat]# more conf/Catalina/localhost/ROOT.xml
<Context docBase=”/demos/demo1″ privileged=”true” antiResourceLocking=”false” ntiJARLocking=”false” swallowOutput=”true”> </Context>
<Context docBase=”/demos/demo1″ privileged=”true” antiResourceLocking=”false” ntiJARLocking=”false” swallowOutput=”true”> </Context>
Menu to Food Tour: 5 AI Agents That Turn Any Restaurant Menu Into a Culinary Adventure
What if you could point your phone at a restaurant menu in…CCAT Chapter 1: Introduction to Claude Code Agent Teams
Learning Objectives By the end of this chapter, you will: What is…Orchestrating Claude Code Agent Teams CCAT
Learn AI Using AI [LAUA] This comprehensive educational guide details the functionality…Connect kubernetes pod to a GCS bucket using JS
To connect from a Kubernetes pod to a Google Cloud Storage (GCS)…