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