dalonsoh
Fri, 19 Dec 2003 08:52:17 -0800
Hi everyone. I'm currently facing a problem where I have two instances of log files, one running internally using Turbine, and the other for a process withing my application which runs for about an hour every day. For this separate process I have my own log file, and I wish to shut it down after it is finished. The properties file for that log file looks like this:
log4j.rootLogger=DEBUG, default
log4j.appender.default=org.apache.log4j.RollingFileAppender
log4j.appender.default.layout=org.apache.log4j.PatternLayout
log4j.appender.default.File=${file.name}.log
log4j.appender.default.datePattern='.'yyyy-MM-dd
log4j.appender.default.layout.ConversionPattern=[%d] [%t] %-5p %M.%L - %m%n
The problem is in my code, the only way I have found to terminate this log
file is by calling LogManager.shutdown(); which unfortunately closses all
log files down (including the Turbine log file) which is not the intended
purpose. Can anyone offer any suggestions for shutting down only one
specific log file??
Thanks,
Damian.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]