Hi, > I understand that Tomcat has a logging API, I understand that >it's a wrapper around some other log package (log4j?).
Tomcat's logging is a mixture: it has its own Loggers and it uses commons-logging as well. As time goes on, we've converting more and more code to use commons-logging. >simple change I can make, maybe switching my System.out.println() >invocations to invoke some logger class? Yes, use ServletContext#log instead of System.out.println and the output will go to your context log. Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
