开发者

Infinite number of backup files with RollingFileAppender

Do you know a way to create an infinite number of backup files with the RollingFileA开发者_开发百科ppender?

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


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).


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


Instead of infinite, how about Integer.MAX_INT?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜