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.
|
Do you know a way to create an infinite number of backup files with the RollingFileAppender? When I don't specify any
| |||
|
feedback
|
|
It is not possible. See the Log4J API :
The best you can do is using a very large limit (Integer.MAX_VALUE will be the max). | |||
feedback
|
|
You could try using the DailyRollingFileAppender. That way your log only cycles once a day. | |||
|
feedback
|