2012/3/29 Mark Claassen <ma...@donnell.com>:
> After thinking about this some more, and deliberating on the subtle issues 
> that were coming up, I decided to reduce the scope of my
> enhancement.  I still like the idea of using a standard logger for this 
> logging, but for now I thought I would focus more on my
> specific problem.  I wrote more about this in the issue.
> https://issues.apache.org/bugzilla/show_bug.cgi?id=52688
>
> Is this something that could be adopted in a future 7.0 release?
>

To delete or otherwise rotate (move, compress, e-mail, etc.) old files
 - I think I would write a <Listener>,

or set up a shell script in cron.

When logger starts to write a new file it has to do so quickly,
because it happens in a synchronized block.

Deleting is possible, because it is a quick operation as well. Though
the tricky part is to find out what to delete.  The files are named by
date and they are not created unless necessary. The date format is
configurable. E.g. it is possible to use it to generate different
directories for different dates.

IIRC JRE's java.util.logging.FileHandler can be configured to keep  n
old files, but it uses different naming scheme.

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to