Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following RollingFileAppender config:

  <appender name="appender.VTBGPRS" type="log4net.Appender.RollingFileAppender">
    <rollingStyle value="Size" />
    <file value="mylog" />
    <staticLogFileName value="false" />
    <appendToFile value="true" />
    <maximumFileSize value="100KB" />
    <maxSizeRollBackups value="20" />
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%date [%thread] %logger{1} - %message%newline" />
    </layout>
  </appender>

And I have files named mylog, mylog.1, mylog.2, etc. I want to add date time stamp to the file name. For example mylog-2012-07.

I can't use datePattern because I rollingStyle is set to Size.

How can I add date time stamp to the file name?

share|improve this question

1 Answer

If you can change things at runtime, you can use something like:

<file type="log4net.Util.PatternString" value="%property{FileName}" />

And in code:

log4net.GlobalContext.Properties["FileName"] = somethingWithADateInIt;

and format the somethingWithADateInIt string using whatever is relevant in your language.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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