Re: log objects and use the values separately in the appenders wi th conversion pattern

2005-01-18 Thread Joerg Eggink
Hello Dirk Thank you very much. That is exacly what I need. Best Regards Joerg OOMS DIRK wrote: You could map the 3 strings onto MDC key-value pairs, e.g. (m1, string1) and address them in a PatternLayout by %X{m1}, etc. Hope this is what you were looking for. dirk Dear All Is it possible to

log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread James Stauffer
I have seen info on how to use log4j for Tomcat and I have seen info on how to use log4j for a web app, but I haven't seen info on how to use log4j for Tomcat logging with a separate config for each app. I am having troubles getting that to work. Does anyone know of a web page that explains

RE: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread OOMS DIRK
AFAIK there will be only one log4j configuration per Tomcat. If you want to differentiate logging behavior between your applications you either: - have a Logger per application OR - if you already have a Logger per class, you could make use of the hierarchy in log4j and change logging behavior on

Re: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread James Stauffer
I am unable to get that to work. If there is no web site that explains how to do that then I can post what I have tried and what happened. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread Joerg Eggink
Hi James Did you try the following: 1. add log4j.jar to your application WEB-INF/lib 2. add log4j.xml to your WEB-INF/classes 3. connect from your application with e.g. private static Logger logger = null; logger.getLogger(CategoryName).log(CategoryName, Level.INFO, message,null); I remeber that

Re: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread James Stauffer
I have log4j.jar in WEB-INF/lib and common/lib (so Tomcat can use it). I have log4j.xml in WEB-INF/classes and common/classes. It appears that once it is configured once for Tomcat it won't do it for the app. - To unsubscribe,

Re: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread James Stauffer
On Tue, 18 Jan 2005 19:10:29 +0100, Ceki Gülcü [EMAIL PROTECTED] wrote: Have a look at this document: http://www.qos.ch/logging/sc.jsp Following that, CVS check out log4j 1.3 and consult the examples located under ./examples/tiny-webapp/ Does that work with 1.2.9?

Re: log4j for Tomcat and separate log4j config for each web app

2005-01-18 Thread Jacob Kjome
Quoting Ceki Gülcü [EMAIL PROTECTED]: James, Have a look at this document: http://www.qos.ch/logging/sc.jsp Following that, CVS check out log4j 1.3 and consult the examples located under ./examples/tiny-webapp/ Although the documentation in ./examples/tiny-webapp/ is up to date,