Setting a log file name to include current date in Log4j - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:05:09Zhttp://stackoverflow.com/feeds/question/192456http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j3Setting a log file name to include current date in Log4jTim2008-10-10T17:56:46Z2009-08-24T12:56:24Z
<p>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 </p>
<pre><code>logname.2008-10-10.log
</code></pre>
<p>Anyone know the best way for me to do this?</p>
<p>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.</p>
http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192470#192470-1Answer by siz for Setting a log file name to include current date in Log4jsiz2008-10-10T18:00:10Z2008-10-10T18:00:10Z<p>Take a look at the RollingFileAppender:
<a href="http://logging.apache.org/log4net/release/config-examples.html" rel="nofollow">http://logging.apache.org/log4net/release/config-examples.html</a></p>
<p>This is what you want.</p>
http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192548#1925484Answer by gedevan for Setting a log file name to include current date in Log4jgedevan2008-10-10T18:24:49Z2008-10-10T18:24:49Z<p>DailyRollingFileAppender is what you exactly searching for.</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192632#1926321Answer by matt b for Setting a log file name to include current date in Log4jmatt b2008-10-10T18:51:35Z2008-10-10T18:51:35Z<p>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 <code>DatePattern</code> as well.</p>
<p>You might just be able to simply subclass RollingFileAppender (or DailyRollingFileAppender, I forget which is which in log4net) and modify the naming logic.</p>
http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192744#1927442Answer by James A. N. Stauffer for Setting a log file name to include current date in Log4jJames A. N. Stauffer2008-10-10T19:29:44Z2008-10-10T19:29:44Z<p>I have created an appender that will do that. <a href="http://stauffer.james.googlepages.com/DateFormatFileAppender.java" rel="nofollow">http://stauffer.james.googlepages.com/DateFormatFileAppender.java</a></p>
http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/773871#7738710Answer by Lars Corneliussen for Setting a log file name to include current date in Log4jLars Corneliussen2009-04-21T18:12:45Z2009-04-21T18:12:45Z<p>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.</p>
<pre><code><staticLogFileName value="false"/>
</code></pre>
<p>Full config: </p>
<pre><code><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>
</code></pre>
<p><code>&quot;.log&quot;</code> is for not letting the dateformat recognice the global date pattern 'g' in log.</p>