Hi All,

I have a configuration "stumper"... Using the PropertiesConfigurator (from a properties file, not doing any special programming if at all possible), I would like to set up my loggers to do the following:

Log FATAL->ERROR to appender 1
Log FATAL->DEBUG to appender 2

So...
---------------------
log.debug("one");
log.info("two");
log.warn("three");
log.error("four");
log.fatal("five");

Appender/log 1
--------------------
message-> four
message-> five

Appender/log 2
---------------------
message -> one
message -> two
message -> three
message -> four
message -> five


Thank you all so much for your help.

Scott

_________________________________________________________________
MSN 8 helps eliminate e-mail viruses. Get 2 months FREE* http://join.msn.com/?page=features/virus


--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to