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've just downloaded log4net via NuGet in VS2010. Log4net version 1.2.11.0.

My issue - I can't append the date or extension to the file name.

Here's my appender:

<appender name="ErrorAppender" type="log4net.Appender.RollingFileAppender">

  <file value="Logs\Error" />
  <appendToFile value="true" />
  <datePattern value=".yyyy-MM-dd.lo\g" />

  <rollingStyle value="Date" />
  <filter type="log4net.Filter.LevelRangeFilter">
    <acceptOnMatch value="true" />

    <levelMin value="ERROR" />
    <levelMax value="FATAL" />
  </filter>

  <layout type="log4net.Layout.PatternLayout">
    <conversionPattern
    value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n" />
  </layout>

</appender>

The file is created in the correct directory (./Logs) with name "Error", no extension.

I've also tried datePattern ".yyyy-MM-dd.\l\o\g".

None of the other S.O. questions I've visited have helped. Any ideas?

share|improve this question

1 Answer

up vote 2 down vote accepted

Add the line

 <staticLogFileName value="false" />

For details see http://logging.apache.org/log4net/release/sdk/log4net.Appender.RollingFileAppender.StaticLogFileName.html

share|improve this answer
Ah, extra woot! TYVM – Nick Vaccaro Nov 9 '12 at 21:36

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.