DailyRollingFileAppender for multiple threads

2007-05-14 Thread rovelgoenne
I start multiple threads where every thread should log to his own file. Therefor I did: - every thread has a number - for every thread I get a logger with "name" + number - in every logger I add an DailyRollingFileAppender - in the thread I log to the connected logger So everything works fine. Eve

Re: DailyRollingFileAppender for multiple threads

2007-05-14 Thread James Stauffer
Search the archives. One file per thread has been discussed and I think someone made an appender that does it. On 5/14/07, rovelgoenne <[EMAIL PROTECTED]> wrote: I start multiple threads where every thread should log to his own file. Therefor I did: - every thread has a number - for every thre

Re: File Watchdogs

2007-05-14 Thread Eric B.
>> So, if I understand this correctly, I would need to do something like: >> Logger logger = Logger.get( "logger" ); >> ComponentBase comp = new ComponentBase(); >> comp.setLoggerRepository ( logger.getLoggerRepository()); >> >> ??? That just doesn't seem right. Seems like I should need to get t