I havd to do the same and here is my properties file :
log4j.rootLogger=OFF,
log4j.logger.foo.mypack=DEBUG, stdout, R
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{dd
hi,
i have an application that listens to a specific port to do its task.
this app runs on multiple instances by specifying different ports in
the argument.
MyApp-1211.bat contains
java com.sample.MyApp 1211
MyApp-1311.bat contains
java com.sample.MyApp 1311
MyA
As far as I can tell, you aren't assigning the "R" appender to any
logger. Was that just an oversight or did you expect something to happen
simply by defining the "R" appender?
Jake
At 04:04 PM 3/5/2006 -0800, you wrote:
>Hi,
>
>I am trying to use log4j for my application which uses
>Tomcat 5
I will be out of the office starting 03/04/2006 and will not return until
12/31/2006.
As of 3/4/2006 I am no longer employed here at Prudential.
Please contact Nehal Narine at x8274 for questions.
-
To unsubscribe, e-mail:
Hi,
I am trying to use log4j for my application which uses
Tomcat 5.5.8 and had two JSPs and frew class files.
I instantiate logger as follows:
//Exp is in package edu.uta.util
final static Logger log = Logger.getLogger(Exp.class);
My log4j.properties file is in common/classes folder
and has