Do you know a way to create an infinite number of backup files with the RollingFileAppender?

When I don't specify any maxBackupIndex at all, I end up with only one backup file.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

It is not possible. See the Log4J API :

The MaxBackupIndex option determines how many backup files are kept before the oldest is erased. This option takes a positive integer value. If set to zero, then there will be no backup files and the log file will be truncated when it reaches MaxFileSize.

The best you can do is using a very large limit (Integer.MAX_VALUE will be the max).

link|improve this answer
Unfortunately, the RollingFileAppender freezes when I use Integer.MAX_VALUE. :( – New Talk Jul 27 '10 at 8:03
feedback

Instead of infinite, how about Integer.MAX_INT?

link|improve this answer
feedback

You could try using the DailyRollingFileAppender. That way your log only cycles once a day.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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