3 Replies Latest reply on May 1, 2004 12:58 AM by jaqmarit

    mod_jk2 logging level

    jaqmarit

      I'm stuck, please help. How can I change the logging level of mod_jk2 from INFO to WARNING? I don't see this in conf/log4j.xml. Anyone, please?

        • 1. Re: mod_jk2 logging level
          lviz

          hi just out of memory.....

          <!-- Limit Tomcat jk connector -->




          <!-- Limit Tomcat jk connector -->




          just look in your server.log / console
          whatever class produces the output

          eg. org.jboss.web and limit it with a category entry
          in the conf/log4j.xml

          cheers
          lothar

          • 2. Re: mod_jk2 logging level
            lviz

            oops again

            hi just out of memory.....

             <!-- Limit Tomcat jk connector -->
             <category name="org.apache.jk">
             <priority value="WARN"/>
             </category>
            
             <!-- Limit Tomcat jk connector -->
             <category name="org.apache.coyote">
             <priority value="WARN"/>
             </category>
            

            just look in your server.log / console
            whatever class produces the output

            eg. org.jboss.web and limit it with a category entry
            in the conf/log4j.xml

            cheers
            lothar

            • 3. Re: mod_jk2 logging level
              jaqmarit

              got it working already :)

              i had that same idea but i had the wrong keyword instead of 'priority'

              thanks!