sorry for the terse description. my logging.properties is visible here: http://paste.fedoraproject.org/98620/39904129 the string java.util.logging.ConsoleHandler.level = FINE has been changed to INFO
________________________________________ From: Konstantin Kolinko [knst.koli...@gmail.com] Sent: Friday, May 02, 2014 10:17 AM To: Tomcat Users List Subject: Re: tomcat 6 degugging with JULI 2014-05-02 17:41 GMT+04:00 Roman, John D. <jdro...@belcan.com>: > Greetings, > Im currently trying to debug an application in Tomcat 6.0.33. mod_jk is > being used as well. > statements like LOGGER.finest("Logging an INFO-level message"); should log > to catalina.out, however they are not. > > Am I missing something? A lot. 1. We do not know anything about your configuration. 2. You would have better luck with "log.fatal()" rather than with "finest()". The log messages are filtered a) at log category (logger) level, before sending them. IIRC, the default value here is ".level=INFO" b) at handler level, before writing them out. The ConsoleHandler (that writes to System.out/err = catalina.out) has java.util.logging.ConsoleHandler.level = FINE The "finest" messages have lowest priority and will be rejected by both. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org _____________________________________________________________ This e-mail transmission contains information that is confidential and may be privileged. It is intended only for the addressee(s) named above. If you receive this e-mail in error, please do not read, copy or disseminate it in any manner. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org