Re: RollingFileAppender

2005-05-23 Thread Curt Arnold
On May 23, 2005, at 10:31 PM, Rohit Sonalkar wrote: Hi, The RollingFileAppender rolls over files when they reach a certain size. What is the technique it uses to do the roll over if for e.g. the maxBackupIndex is 10 and there are currently 10 files? Does it simply delete logs.out.10 and re

Re: Log4j logging under Tomcat5 (was Re: Multiple Projects Using Same Logger)

2005-05-23 Thread Aron Bock
web apps! I now think the more sane explanation is that I was hasty in my offhand reporting, and that the "ton" of output I saw was from JSF, not Tomcat. That would make a little more sense, because all JSF jars are in WEB-INF/lib of the webapp. And, again, as mentioned, JSF was in the mix

RollingFileAppender

2005-05-23 Thread Rohit Sonalkar
Hi, The RollingFileAppender rolls over files when they reach a certain size. What is the technique it uses to do the roll over if for e.g. the maxBackupIndex is 10 and there are currently 10 files? Does it simply delete logs.out.10 and rename logs.out.9 as logs.out.10, logs.out.8 as logs.out.9 an

RE: Software to analyze log4j files?

2005-05-23 Thread Scott Deboy
Interesting request to 'glob' together files into a single file. Care to enter it into bugzilla as an enhancement request to Chainsaw V2? Chainsaw V2's LogFilePatternReceiver does support a 'filterExpression' param that only forwards events that match the expression on to Chainsaw. For example

RE: Software to analyze log4j files?

2005-05-23 Thread Lutz Michael
If you're open to commercial products we've found this to be a great tool: http://www.xplg.com/ It's web-based, portable, and does exactly what you need. -Original Message- From: Anthony Smith [mailto:[EMAIL PROTECTED] Sent: Monday, May 23, 2005 5:07 PM To: log4j-user@logging.ap

Software to analyze log4j files?

2005-05-23 Thread Anthony Smith
Is their any software out there that analyzes log4j code? Take for instance my lo4gj is setup to roll my file names making them no larger than 1MB. To search for errors in the logs, I have to do a grep or use windows find. I would love a program that when I gave it the base name for the file, i

Alternate appender in case of failure

2005-05-23 Thread norbimou
I would like to set up an alternate appender in case of error of the primary appender. But I would like too that if the primary appender is up again, it handles the events and the backup appender be closed. I tried FallbackErrorHandler but it does not allow the primary appender to be used aga