Configures log4net using the specified configuration file.
The configuration file must be valid XML. It must contain at least one element called log4net
that holds the log4net configuration data.
The log4net configuration file can possible be specified in the application's configuration file (either MyAppName.exe.config
for a normal application on Web.config
for an ASP.NET application).
The first element matching <configuration>
will be read as the configuration. If this file is also a .NET .config file then you must specify a configuration section for the log4net
element otherwise .NET will complain. Set the type for the section handler to IgnoreSectionHandler, for example:
[XML]
<configSections>
<section name="log4net" type="System.Configuration.IgnoreSectionHandler" />
</configSections>
[C#]
using log4net.Config;
using System.IO;
using System.Configuration;
...
XmlConfigurator.Configure(new FileInfo(ConfigurationSettings.AppSettings["log4net-config-file"]));
In the .config
file, the path to the log4net can be specified like this :
[XML]
<configuration>
<appSettings>
<add key="log4net-config-file" value="log.config" />
</appSettings>
</configuration>
XmlConfigurator Class | log4net.Config Namespace | XmlConfigurator.Configure Overload List