Setting a log file name to include current date in Log4j - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:05:09Z http://stackoverflow.com/feeds/question/192456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j 3 Setting a log file name to include current date in Log4j Tim 2008-10-10T17:56:46Z 2009-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 -1 Answer by siz for Setting a log file name to include current date in Log4j siz 2008-10-10T18:00:10Z 2008-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#192548 4 Answer by gedevan for Setting a log file name to include current date in Log4j gedevan 2008-10-10T18:24:49Z 2008-10-10T18:24:49Z <p>DailyRollingFileAppender is what you exactly searching for.</p> <pre><code>&lt;appender name="roll" class="org.apache.log4j.DailyRollingFileAppender"&gt; &lt;param name="File" value="application.log" /&gt; &lt;param name="DatePattern" value=".yyyy-MM-dd" /&gt; &lt;layout class="org.apache.log4j.PatternLayout"&gt; &lt;param name="ConversionPattern" value="%d{yyyy-MMM-dd HH:mm:ss,SSS} [%t] %c %x%n %-5p %m%n"/&gt; &lt;/layout&gt; &lt;/appender&gt; </code></pre> http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192632#192632 1 Answer by matt b for Setting a log file name to include current date in Log4j matt b 2008-10-10T18:51:35Z 2008-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#192744 2 Answer by James A. N. Stauffer for Setting a log file name to include current date in Log4j James A. N. Stauffer 2008-10-10T19:29:44Z 2008-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#773871 0 Answer by Lars Corneliussen for Setting a log file name to include current date in Log4j Lars Corneliussen 2009-04-21T18:12:45Z 2009-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>&lt;staticLogFileName value="false"/&gt; </code></pre> <p>Full config: </p> <pre><code>&lt;appender name="DefaultFileAppender" type="log4net.Appender.RollingFileAppender"&gt; &lt;file value="application"/&gt; &lt;staticLogFileName value="false"/&gt; &lt;appendToFile value="true" /&gt; &lt;rollingStyle value="Date" /&gt; &lt;datePattern value="yyyy-MM-dd&amp;quot;.log&amp;quot;" /&gt; &lt;layout type="log4net.Layout.PatternLayout"&gt; &lt;conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" /&gt; &lt;/layout&gt; &lt;/appender&gt; </code></pre> <p><code>&amp;quot;.log&amp;quot;</code> is for not letting the dateformat recognice the global date pattern 'g' in log.</p>