Re: Class for sending STDERR to log4j

2007-02-24 Thread Robin Walker
That worked. This is an incredibly useful add-on. Thanks for your help. -Robin --- James Stauffer <[EMAIL PROTECTED]> wrote: > Try something like Level.error or Level.ERROR. > > On 2/23/07, Robin Walker <[EMAIL PROTECTED]> wrote: > > Hello, > > > > Looking online, I found this neat bit of co

Re: Class for sending STDERR to log4j

2007-02-23 Thread James Stauffer
Try something like Level.error or Level.ERROR. On 2/23/07, Robin Walker <[EMAIL PROTECTED]> wrote: Hello, Looking online, I found this neat bit of code and am trying to use it to send STDERR to log4j so we can log all System.err using log4j. Trouble is, it requires both a Logger and Level to

Class for sending STDERR to log4j

2007-02-23 Thread Robin Walker
Hello, Looking online, I found this neat bit of code and am trying to use it to send STDERR to log4j so we can log all System.err using log4j. Trouble is, it requires both a Logger and Level to be passed into the constructor and I'm a bit confused with regards to the "Level". #1 - I'm not cl