Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I cannot make log4net work in my web application :(

I'm trying to set up log4net but I cannot make it work. I've put this in my Web.config:

<configSections>
  <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>

<log4net>
  <appender name="TraceAppender" type="log4net.Appender.TraceAppender">
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
    </layout>
  </appender>

  <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
    <file value="logfile.log" />
    <appendToFile value="true" />
    <rollingStyle value="Composite" />
    <maxSizeRollBackups value="14" />
    <maximumFileSize value="15000KB" />
    <datePattern value="yyyyMMdd" />
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
    </layout>
  </appender>

  <root>
    <level value="DEBUG" />
    <appender-ref ref="RollingFileAppender" />
    <appender-ref ref="TraceAppender" />
  </root>
</log4net>

Then, in my code I execute:

log4net.Config.XmlConfigurator.Configure(new FileInfo(HttpContext.Current.Server.MapPath("~/Web.config")));
ILog log = LogManager.GetLogger("MainLogger");

if (log.IsDebugEnabled)
    log.Debug("lalala");

But nothing happens. I checked the "log" variable, and it contains a LogImpl object that has all the logging levels enabled. I get no error or configuration warning, I cannot see any file in the root, in the bin or anywhere.

What do I have to do to make it work?

like image 244
vtortola Avatar asked Apr 15 '10 10:04

vtortola


People also ask

Where do I put log4net in web config?

Now, add the section "<log4net></log4net>" after the <configSections/> element in your app. config file. Next, inside the "<log4net></log4net>" section, place the configuration details as shown in the code snippet given below. That's all you need to do to configure log4net.


1 Answers

Try to write:

log4net.Config.XmlConfigurator.Configure();

instead, since Web.config is the default location where Log4Net will look.

Otherwise, remove that entire line from your code and paste the following into your AssemblyInfo.cs:

[assembly: log4net.Config.XmlConfigurator()]

This will configure Log4Net at assembly level. Then in your code, just create a logger like this:

private static readonly ILog Log = LogManager.GetLogger(typeof(YourFunkyClass));
like image 129
Eric Eijkelenboom Avatar answered Oct 02 '22 03:10

Eric Eijkelenboom