is there a solution to make the log files be created each week by RollingFileAppender's datePattern? I know that yyyyMMdd is valid for each day but i couldn't find a solution for weekly logging. thanks in advance.

link|improve this question

56% accept rate
feedback

1 Answer

As far as I can tell you need to write your own appender for this. The .Net custom format strings do not have anything for getting the calendar week. There is an API for that though:

http://msdn.microsoft.com/en-us/library/system.globalization.calendar.getweekofyear%28VS.71%29.aspx

link|improve this answer
i read in here msdn.microsoft.com/en-us/library/… that there was a formating like ddd which returns the week day. so i wrote yyyyMMddd and now i am waiting for the next week to see if it worked fortunately =) – cemregoksu Aug 3 '10 at 12:54
this returns something like "Mon" for "Monday", doesn't it? – Stefan Egli Aug 3 '10 at 13:22
Yes, it does i think... so it supposes the idea that it won't work? =) – cemregoksu Aug 4 '10 at 8:07
It will not work. You need to extend the appender or write your own. – Stefan Egli Aug 4 '10 at 8:46
feedback

Your Answer

 
or
required, but never shown

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