Re: Different levels to different appenders

2008-03-03 Thread Mikael Ståldal
Mikael Ståldal skrev: then set the logger levels for both hierarchies to DEBUG, and write yourself a simple custom Filter implementation that accepts/denies events based on your logic, and attach a separate configured instance of that filter to each of the appenders (accepting/denying as the

Re: Different levels to different appenders

2008-02-27 Thread Mikael Ståldal
Paul Smith skrev: Why not simply have all the events your interested in together, in context, in one log file? Have one File appender, and tweak the levels to emit/silence loggers you care/don't care about? I'm personally not sure of the advantage of seeking information across 2 log files.

RE: Different levels to different appenders

2008-02-27 Thread Michael Erskine
Personally, I'd just log everything to a single file and filter it with a simple Perl script either after the fact or in a POE file tail app. Just my two cents - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Different levels to different appenders

2008-02-26 Thread Mikael Ståldal
Paul Smith skrev: If this truly is what you want, Are you implying that it would be a bad idea? Why would it be a bad idea? then set the logger levels for both hierarchies to DEBUG, and write yourself a simple custom Filter implementation that accepts/denies events based on your logic, and

Re: Different levels to different appenders

2008-02-26 Thread Paul Smith
On 27/02/2008, at 12:51 AM, Mikael Ståldal wrote: Paul Smith skrev: If this truly is what you want, Are you implying that it would be a bad idea? Why would it be a bad idea? Why not simply have all the events your interested in together, in context, in one log file? Have one File

Re: Different levels to different appenders

2008-02-25 Thread Mikael Ståldal
Jim Reilly skrev: I think your main problem here is that you cannot put the same logger name =xxx and have that xxx be the same string, to be able to seperate by logging level. I am aware of that problem. Now I need a solution. I think your only way would be to have multiple appenders that

Re: Different levels to different appenders

2008-02-25 Thread Paul Smith
On 21/02/2008, at 11:00 PM, Mikael Ståldal wrote: I have two appenders, MAIN_LOG and DEBUG_LOG. I have the loggers set up to match Java class hierarchy as recommended. I have two interesting codebases, com.mycompany and com.othercompany. I want to send DEBUG and higher from com.mycompany

Re: Different levels to different appenders

2008-02-21 Thread Jim Reilly
Mikael, Ooop, I was in a rust 2 days ago when I copied the xml text into the email, I left out the line of xml. So, here is the full xml and I also attached an xml file just so no tabs or extra spaces of chars get placed in it... Let me know how this works for you. The original problem was

Re: Different levels to different appenders

2008-02-21 Thread Jim Reilly
Mikael, I think your main problem here is that you cannot put the same logger name =xxx and have that xxx be the same string, to be able to seperate by logging level.I think your only way would be to have multiple appenders that each have their own log file that are by log level. This is