Re: Tomcat 6; getting logging to work

2009-01-07 Thread Filip Hanik - Dev Lists
yes, but you havent defined what 6mmi actually logs to all the other loggers have defined what directory and what file name is used, Filip juan.velez wrote: Yes I have handlers = 1catalina.org.apache.juli.FileHandler, 2localhost.org.apache.juli.FileHandler, \ 3manager.org.apache.ju

RE: Tomcat 6; getting logging to work

2009-01-07 Thread Chris Hut
=6mmi.org.apache.juli.FileHandler com.nmi.level=FINEST assuming all of your logger names start with "com.nmi" this should work for you. Chris -Original Message- From: juan.velez [mailto:juan.ve...@areva-td.com] Sent: Wednesday, January 07, 2009 1:30 PM To: users@tomcat.apache.org Subject: Re: Tomcat

Re: Tomcat 6; getting logging to work

2009-01-07 Thread juan.velez
Yes I have handlers = 1catalina.org.apache.juli.FileHandler, 2localhost.org.apache.juli.FileHandler, \ 3manager.org.apache.juli.FileHandler, 4admin.org.apache.juli.FileHandler, \ 5host-manager.org.apache.juli.FileHandler, 6mmi.org.apache.juli.FileHandler, \ java.u

Re: Tomcat 6; getting logging to work

2009-01-07 Thread Filip Hanik - Dev Lists
have you defined 6mmi.org.apache.juli.FileHandler I don't see that in your addition Filip juan.velez wrote: I followed the directions in that link (http://tomcat.apache.org/tomcat-6.0-doc/logging.html) and my logging messages still do not show up. I mean, I see the INFO messages generated by

Re: Tomcat 6; getting logging to work

2009-01-07 Thread juan.velez
I followed the directions in that link (http://tomcat.apache.org/tomcat-6.0-doc/logging.html) and my logging messages still do not show up. I mean, I see the INFO messages generated by my web-app but if I change the level to FINE (or FINEST) I do not see it. I am using Tomcat 6.0.18 and Java Util

Re: Tomcat 6; getting logging to work

2008-02-14 Thread Mark Thomas
Peter Hawkins wrote: Basically, I would like to enable logging for my JSP app. How do I do it? Take a look at http://tomcat.apache.org/tomcat-6.0-doc/logging.html You want the java.util.logging section. Replace the examples web app with your own and then just use java.util.logging as per norma