this is my log4net.xml file

<dateTimeStrategy type="log4net.Appender.RollingFileAppender+UniversalDateTime" />

<lockingModel type="log4net.Appender.FileAppender+MinimalLock" />

<staticLogFileName value="false" />

<layout type="log4net.Layout.PatternLayout">
  <conversionPattern value="%utcdate %level %property{requestId} %thread %logger - %message%newline" />
</layout>

The log dates are in UTC, but the file rolls over to the next day on server time. This results in some hours of logs being recorded in the wrong file.

How do I make the file roll over depending upon the utc time?

link|improve this question

33% accept rate
possible duplicate of Log4net : Rolling file on utc date rather than server date – gbn Nov 19 '10 at 20:54
It is a dup, because the other question did not get answered. – nsdiv Nov 29 '10 at 19:45
feedback

1 Answer

The general answer is that you are going to need to open up log4net and modify it to allow this. However, if you don't want to do all the legwork yourself, you could use the code posted in the link below to use as a jump-start:

http://old.nabble.com/svn-commit%3A-r398209----logging-log4net-trunk-src-Appender-RollingFileAppender.cs-to4156618.html#a4156618

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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