Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some troubles while writing logs from log4net to the file. I seem to do all as described in manual, but that does not work. Here is my logging.config file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  </configSections>
  <log4net>
    <appender name="FileAppender" type="log4net.Appender.FileAppender">
      <file value="log.txt" />
      <appendToFile value="true" />
      <lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date [%thread] %-5level %message%newline" />
      </layout>
    </appender>
  </log4net>
</configuration>

Please help with an example of configuration file which actually works.

share|improve this question
3  
I'd bet that are several examples in the internet – Luis Filipe Mar 21 '12 at 13:10
1  
Are you Configuring the Xml setting... logging.apache.org/log4net/release/sdk/… – Lloyd Mar 21 '12 at 13:14

3 Answers

up vote 3 down vote accepted

You don't seem to have a <root> element that references your appender:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  </configSections>

    <log4net>
      <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
        <file value="log.txt" />
        <appendToFile value="true" />
        <rollingStyle value="Size" />
        <maxSizeRollBackups value="10" />
        <maximumFileSize value="250KB" />
        <staticLogFileName value="true" />
        <layout type="log4net.Layout.PatternLayout">
          <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
        </layout>
      </appender>
      <root>
        <level value="INFO" />
        <appender-ref ref="RollingFileAppender" />
      </root>
    </log4net>
</configuration>
share|improve this answer
Thanks, that was a point. Also I've found out that you can put <level value = "ALL" /> to redirect all logs to the file. – Yury Pogrebnyak Mar 22 '12 at 8:17

Did you call the configure method when the application starts for the first time ?

log4net.Config.XmlConfigurator.Configure();

If yes. You should be good. Check the file permissions on the disk you are writing.

If you want you can enable log4net internal debugging also to figure out what is wrong.

http://logging.apache.org/log4net/release/faq.html#troubleshooting

share|improve this answer
you could also enable log4net internal debugging, as detailed here: logging.apache.org/log4net/release/faq.html#troubleshooting – paul Mar 21 '12 at 13:15
For an .NET web app, does this line only need to be called once? i.e. in the Application_Start() of the Global.asax file? Or on each users session start i.e. Session_Start() ? – Seany84 Mar 21 '12 at 13:17
@paul : Added that to my answer. Thanks Paul – Shyju Mar 21 '12 at 13:18
1  
@Seany84 : Not for each session. Only once when the application starts. thats y we put this in the Application_start event in global.asax which will fire only once in the application life time. – Shyju Mar 21 '12 at 13:19
@Shyju Thanks for clearing that up for me. I recently introduced log4net into a commercial application and I am going to have to move this Configure() to the Application_Start(). Thanks for the advice. – Seany84 Mar 21 '12 at 13:22

There are two things that you can do:

One, if you want to use a seperate config file, by adding the following to you app.config file it will configure logging automatically.

<?xml version="1.0"?>
<configuration>
    <appSettings>
        <add key="log4net.Config" value="log4.config"/>
        <add key="log4net.Config.Watch" value="True"/>
        <add key="log4net.Internal.Debug" value="False"/>
    </appSettings>
</configuration>

Otherwise, you need to initiate logging in the start of your application.

//Initiate logging based on web.config file
log4net.Config.XmlConfigurator.Configure();

// Create a logger for use in this class
log4net.ILog log4 = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
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.