We are using log4net and want to specify it's configuration in an external config file (as we have done with other sections). To do this we have changed the log4net section in the App.config to:

...
<section name="log4net" 
     type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
...
<log4net configSource="Log.config" />
...

And in the Log.Config file (Same directory as the App.config) we have:

<log4net>
  <appender name="General" type="log4net.Appender.FileAppender">
    <file value="log.txt" />
    <layout type="log4net.Layout.SimplyLayout" />
  </appender>
  <root>
    <appender-ref ref="General" />
  </root>
</log4net>

However, when we run the app, no log file is created (and no logging done). There are no error messages output to the console.

If we move the contents of the Log.config file back into the App.config (replacing the first code line above), it works as expected. Any idea why it is not working in an external file?

link|improve this question

I ran into the same problem - we probably followed the same (mis-guided) guide! – Zach Burlingame Jan 30 '09 at 16:45
1  
This is what I don't like about log4net. The logging framework should be one of the most solid bits of your app in my opinion - but log4net often seems to be a bit flakey. – UpTheCreek Apr 17 '10 at 15:56
feedback

5 Answers

up vote 33 down vote accepted

Do you have the following attribute in your AssemblyInfo.cs file:

[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log4Net.config", Watch = true)]

and code like this at the start of each class that requires logging functionality:

private static readonly ILog log = 
LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

I have a blog post containing this and other info here.

link|improve this answer
Thanks Mitch, this was just what I needed! – Zach Burlingame Jan 30 '09 at 16:44
3  
Good blog article, got exactly what I needed from following the link! – bobwah Mar 17 '09 at 9:54
feedback

There is an open defect on this issue. Log4Net does not support the configSource attribute of configuration elements. To use a purely configuration file solution you use the log4net.Config key in appSettings.

Step 1: Include the normal configuration section definition:

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

Step 2: Use the magic log4net.Config key in appSettings.

<appSettings>
      <add key="log4net.Config" value="log4net.simple.config" />
</appSettings>

Step 3: Contribute a patch to fix the handling of configSource.

link|improve this answer
A call to log4net.Config.XmlConfigurator.Configure(); should get past this issue with it not reading configSource – Greg Domjan Apr 11 '11 at 20:58
feedback

Make sure that your log4net.config file is set with the following properties:

Build Action: Content

Copy to output directory: Copy Always

link|improve this answer
feedback

The step that has been missed is

log4net.Config.XmlConfigurator.Configure(); 

this will cause the configSource to be used. Make sure you call it once before calling GetLogger();

link|improve this answer
You do not need to do this if you use Mitch Wheat's solution. – Robert Wagner Apr 11 '11 at 22:20
@Robert: Sure, though Mitch Wheat's solution requires hard coding the config file outside of the app.config - I read the original question was why doesn't configSource work, it does work if this extra step is followed. – Greg Domjan Apr 12 '11 at 22:45
feedback

@Mitch, It turns out there is a file with the [assembly:...] declaration, but it did not have the ConfigFile property.

Once I added it and pointed it to Log.config, it started working. I would have thought that it would work like all the other config sections (ie AppSettings) and accept external config files with no modification.

We don't have the second statement you mentioned, as we wrap it in a global static log provider.

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.