RE: basic logging question

2003-06-20 Thread Mike Curwen
Do you have the log4j.jar file anywhere? It would be difficult to do log4j logging with out it in Tomcat's common/lib Here is a basic configuration file I use, placed under my webapp's WEB-INF/classes: #log4j.properties log4j.rootCategory=DEBUG, filer, chainsaw log4j.appender.filer=org.apache.

RE: basic logging question

2003-06-20 Thread Shapira, Yoav
Howdy, >the methods of org.apache.catalina.logger.FileLogger or log4j's Logger >class so that i can turn logging on and off and can use various levels like >debug,info,warn,errors etc. I tried to import >org.apache.catalina.logger.FileLogger in java servlet, but it says class >not found. I do hav