I have a log file currently configured to roll over every hour. When it is first created it is called logfile.log, and once it rolls over it is renamed to logfile.log.YYYY-MM-DD-HH.

What I would like is for the log file to be created immediately using the logfile.log.YYYY-MM-DD-HH naming convention as opposed to logfile.log.

Any ideas?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Take a look at this post:

It discusses the use of DatedFileAppender described here:

I never used this one, but it seems to be doing exactly what you need.

link|improve this answer
Thanks I ended up writing my own appender similar to this one. – Denis Sadowski Nov 20 '10 at 22:55
You are welcome, glad it worked out! – icyrock.com Nov 21 '10 at 1:35
feedback

Your Answer

 
or
required, but never shown

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