vote up 3 vote down star
2

I would like to set the log file name for a log4j and log4net appender to have the current date. We are doing Daily rollovers but the current log file does not have a date. The log file name format would be

logname.2008-10-10.log

Anyone know the best way for me to do this?

edit: I forgot to mention that we would want to do this in log4net as well. Plus any solution would need to be usable in JBoss.

flag

5 Answers

vote up 4 vote down check

DailyRollingFileAppender is what you exactly searching for.

<appender name="roll" class="org.apache.log4j.DailyRollingFileAppender">
    <param name="File" value="application.log" />
    <param name="DatePattern" value=".yyyy-MM-dd" />
    <layout class="org.apache.log4j.PatternLayout"> 
      <param name="ConversionPattern" 
          value="%d{yyyy-MMM-dd HH:mm:ss,SSS} [%t] %c %x%n  %-5p %m%n"/>
    </layout>
  </appender>
link|flag
Won't this simply create a log file called "application.log" and only place the datepattern in the rolled log files? – Tim Oct 10 '08 at 18:36
As a result you will get a separate log file for each day. But the todays log file will be named as application.log, without a date. And it's ok in most cases. – gedevan Oct 10 '08 at 18:52
Two comments on "DatePattern": - I use ".yyyy-MM-dd.lo\g" to get the same extension for all log files. - The backslash before g is needed (at least for log4net) to prevent .Net applying the predefined "g" format. – gyrolf Oct 25 '08 at 7:34
@gyrolf, applying the format you mention, do your logs end up as mylog.log.yyyy-MM-dd.log? Or are you somehow removing the previous extension? – James McMahon Nov 19 at 12:19
vote up 0 vote down

I don't know if it is possible in Java, but in .NET the property StaticLogFileName on RollingFileAppender gives you what you want. The default is true.

<staticLogFileName value="false"/>

Full config:

<appender name="DefaultFileAppender" type="log4net.Appender.RollingFileAppender">
  <file value="application"/>
  <staticLogFileName value="false"/>
  <appendToFile value="true" />
  <rollingStyle value="Date" />
  <datePattern value="yyyy-MM-dd&quot;.log&quot;" />
  <layout type="log4net.Layout.PatternLayout">
    <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
  </layout>
</appender>

&quot;.log&quot; is for not letting the dateformat recognice the global date pattern 'g' in log.

link|flag
vote up 2 vote down

I have created an appender that will do that. http://stauffer.james.googlepages.com/DateFormatFileAppender.java

link|flag
James, could you post the code inside your answer? Google pages is blocked from my work. – James McMahon Nov 19 at 12:24
vote up 1 vote down

I'm 99% sure that RollingFileAppender/DailyRollingFileAppender, while it gives you the date-rolling functionality you want, doesn't have any way to specify that the current log file should use the DatePattern as well.

You might just be able to simply subclass RollingFileAppender (or DailyRollingFileAppender, I forget which is which in log4net) and modify the naming logic.

link|flag
vote up -1 vote down

Take a look at the RollingFileAppender: http://logging.apache.org/log4net/release/config-examples.html

This is what you want.

link|flag

Your Answer

Get an OpenID
or

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