Log4Net worked fine for a few months and then started giving problems when rolling out a new file for the next day.

Problem: When ever i check in the daytime or until 23:59 everything is logged but as soon as it rolls over, the rolled file will have the data of 00:00 - 06:00 hrs of the next day. all the logs of the previous day is lot.

so for the rolledfile Service.log20100702 will contain the data 00:00 - 06:00 hrs for 03/07/2010 date and nothing else.

The problem is mainly on the Production boxes, its working fine on the my localbox.

my rolling file appender looks like

<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
      <file value="C:\TTLLogs\Refunds\Ttl.Refunds.Web.UI.log"/>
      <appendToFile value="true" />
      <datePattern value="yyyyMMdd" />
      <rollingStyle value="Date" />
      <maximumFileSize value="10MB" />
      <maxSizeRollBackups value="100" />
      <layout type="log4net.Layout.PatternLayout">
        <header value="[Header]&#xA;"/>
        <footer value="[Footer]&#xA;"/>
        <conversionPattern value="%date %-5level %logger ${COMPUTERNAME} %property{UserHostAddress} [%property{SessionID}] - %message%newline"/>
      </layout>
      <lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
    </appender>
link|improve this question

61% accept rate
Have you hit the maximumFileSize limit perhaps? Is there an automated process or similar that runs around 06:00 hours that could be locking the system up? I.e. Are the last log entries similar each day or completely random. – Daniel Ballinger Jul 8 '10 at 3:58
its not 06:00 hrs everyday, its random. In the past the size till 457 MBs. So its reaching the limit but its not rolling after maximumFileSize and the maxSizeRollBackups is 100 so it shouldnt be a problem. Any idea why thts happening? – Miral Jul 8 '10 at 9:29
feedback

1 Answer

I'd try:

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.