I've seen a lot of questions here on the different appenders log4j has, but none that seem to cover the issue I'm having. Apologies if this is repeated anywhere.
I'm using a CompositeRollingAppender in our app since we need to roll the log file based on both time and size. This works exactly as advertised, however we end up with files like:
myapp.log
myapp.log.2010-12-11
myapp.log.2010-12-11.1
myapp.log.2010-12-12
Is it possible to change the format of how log4j renames the files? I'm sure there must be an elusive property somewhere that I've missed. For example in the above situation I'd like something like:
myapp.log
myapp-2010-12-11.log
myapp-2010-12-11.1.log
myapp-2010-12-12.log
The point here being that the extension is still .log Why you ask? Because the administrators of our app have complained that they can't just double-click on the file to open it (I know, I know). If they all have a .log extension this would not be the case.
Thanks in advance.

.logliteral in your date pattern. Of course your files will look likemyapp.log-2010-12-11.log, but at least they could be opened by double-clicking. – biziclop Feb 1 '11 at 17:02