I have the following logging problem with several Java applications using log4j
for logging:
I want log files to be rotated daily, like
log.2010-09-10
log.2010-09-09
log.2010-09-08
log.2010-09-07
log.2010-09-06
log.2010-09-05
log.2010-09-04
But for data security reasons we are not allowed to keep log files for longer than seven days at my company. So the generation of the next next log file log.2010-09-11
should trigger the deletion of log.2010-09-04
. Is it possible to configure such a behaviour with log4j
? If not, do you know another elegant solution for this kind of logging problem?
If you are using Linux, you can configure a cron job using tmpwatch.
Most Linux systems have a tmpwatch cron job that cleans up the /tmp directory. You can add another that monitors your logging directory and deletes files over 7 days old.
If you are using a different system, there are probably equivalent utilities.
I create this Methode and call it by closing the application:
Use the setting
log4j.appender.FILE.RollingPolicy.FileNamePattern
, e.g.log4j.appender.FILE.RollingPolicy.FileNamePattern=F:/logs/filename.log.%d{dd}.gz
for keeping logs one month before rolling over.I didn't wait for one month to check but I tried with mm (i.e. minutes) and confirmed it overwrites, so I am assuming it will work for all patterns.
I had set:
Like others before me, the DEBUG option showed me the error:
Here is an idea I have not tried yet, suppose I set the DatePattern such that the files overwrite each other after the required time period. To retain a year's worth I could try setting:
Would it work or would it cause an error ? Like that it will take a year to find out, I could try:
but it will still take a month to find out.
There's also a DailyRollingFileAppender; http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/DailyRollingFileAppender.html
Edit: After reading this worrying statement;
from the above URL (which I never realised before), then this looks like a better bet; http://logging.apache.org/log4j/companions/extras/apidocs/index.html
You can perform your housekeeping in a separate script which can be cronned to run daily. Something like this: