Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So log4j comes with two existing log rollers: RollingFileAppender, and DailyRollingFileAppender. Has anyone heard of an appender that does both of what the former do?

I need an appender that will roll log files based on filesize, but also append the current date to it.

I've been thinking about creating my own appender, but if there is already one that has been created, why not save the time and use that one?

share|improve this question

4 Answers

up vote 4 down vote accepted

Looks like you want a mix of the http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/DailyRollingFileAppender.html and the http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/RollingFileAppender.html.

You'll have to code by yourself. The good news is: you'll just have "merge" those classes functionality, no "low level" new code required.

share|improve this answer
I ended up creating my own FileAppender, which is just a RollingFileAppender that adds the current date on each rolled file. – Jose Chavez Apr 29 '09 at 20:03

I know this post is a bit late but you could try out the TimeAndSizeRollingAppender. It's freely available under the Apache 2.0 license, download it from www.simonsite.org.uk.

share|improve this answer

The Log4J Extras from the "companions" project provide an array of policies for rolling, including what you're looking for.

APIDoc: http://logging.apache.org/log4j/companions/extras/apidocs/index.html Homepage: http://logging.apache.org/log4j/companions/extras/

share|improve this answer
Are these recent? This is cool. The org.apache.log4j.rolling package looks very useful. Thanks! :) – Jose Chavez May 11 '12 at 13:29

We use the class you see here. It works as you described and extends FileAppender.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.