RE: Logging to separate files

2002-07-22 Thread Havaldar, Raghu
There are multiple solutions, a simpler one of which is below: - create 2 loggers, each hooked with a FileAppender. - have your component log to those separate loggers. example config: log4j.rootLogger=DEBUG, log4j.logger.logger1=INFO,fileAppender1 log4j.logger.logger2=INFO,fileAppender2

RE: Logging to separate files

2002-07-22 Thread Daly, Michael
:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 4:29 PM To: 'Log4J Users List' Subject: RE: Logging to separate files There are multiple solutions, a simpler one of which is below: - create 2 loggers, each hooked with a FileAppender. - have your component log to those separate loggers. example

RE: Logging to separate files

2002-07-22 Thread Colin MacDonald
-Original Message- How do I instruct each component to write to the correct logfile? -Original Message- There are multiple solutions, a simpler one of which is below: - create 2 loggers, each hooked with a FileAppender. - have your component log to those separate