up vote 26 down vote favorite
4
share [g+] share [fb]

I want my logfile to look something like this: 2009-02-13.log

but the problem is that I can't seem to find any way to add the .log extension.

I've tried a lot of things but nothing helps. This is what I have this far:

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

Kind regards,

Sem

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

Sem,

Try adding the .log extension to your date pattern like so and remove it from the file attribute.

<datePattern value="yyyy-MM-dd.lo\g"/>

-Woody

link|improve this answer
+1 Had a similar problem, worked like a charm! Thanks! – Rob Oct 19 '10 at 8:43
Also remember to add <staticLogFileName value="false" /> – Chris Klepeis Jan 4 at 16:35
feedback

The other answers escape the "g" in "log" since "g" is a special character in datePattern. This isn't wrong, but I prefer to wrap the entire set of non-date characters in single quotes, like so:

<datePattern value="yyyy-MM-dd'.log'" />

This gives the same results, but is easier for me to manage. This way, I don't have to recall which specific characters are special for datePattern (the list is long and varied). If I forget one character then I don't run the risk of borking my file names; they're all nicely escaped en masse.

link|improve this answer
I prefer this approach, too. – Jarrod Dixon May 12 '11 at 2:21
So what is the value you have for <file /> with this? – ssmith Oct 27 '11 at 17:14
@ssmith: Leave off the .log from <file />. Log4Net appends the datepattern onto the file value, so you want the file extension on the former. – Craig Walker Oct 28 '11 at 5:04
feedback

add ".lo\g" to the end of your datepattern

link|improve this answer
thx, this dit the trick for me – user29964 Mar 5 '09 at 15:03
feedback

Your Answer

 
or
required, but never shown

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