log4net初始化

时间:2009-08-11 15:32:13

标签: .net log4net initialization log4net-configuration xmlconfigurator

我看起来很难复制,但是不管它看起来多么基本,都要问下面这一点,让它一劳永逸地说清楚!

在使用64位W7上的VS28KSP1上的log4net版本1.2.10.0的全新控制台应用程序中,我有以下代码: -

using log4net;
using log4net.Config;

namespace ConsoleApplication1
{
    class Program
    {
        static readonly ILog _log = LogManager.GetLogger(typeof(Program));
        static void Main(string[] args)
        {
            _log.Info("Ran");
        }
    }
}

在我的app.config中,我有:

<?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="Program.log" />
      <lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
      <appendToFile value="true" />
      <rollingStyle value="Size" />
      <maxSizeRollBackups value="10" />
      <maximumFileSize value="1MB" />
      <staticLogFileName value="true" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="[%username] %date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
      </layout>
    </appender>

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

</configuration>

这不会写任何东西,除非我添加一个属性:

[ assembly:XmlConfigurator ]

或者在Main()中明确初始化它:

_log.Info("This will not go to the log");
XmlConfigurator.Configure();
_log.Info("Ran");

这提出了以下问题:

  1. 我几乎可以肯定我已经看到它在某个版本的log4net上工作,没有添加汇编属性或在Main中调用。有人可以向我保证我没想到吗?
  2. 有人可以指出我在文档中明确指出配置部分和初始化挂钩都需要的位置 - 希望能解释何时更改,如果有的话?
  3. 我可以很容易想象为什么这可能是政策 - 明确初始化步骤以避免意外等等,这只是我似乎记得并非总是这样......(通常我有配置一个单独的文件,通常从图片中取出配置文件)

1 个答案:

答案 0 :(得分:28)

根据the configuration page in the manual

  

可以使用程序集级属性配置log4net配置,而不是以编程方式指定。

     

XmlConfiguratorAttribute:log4net.Config.XmlConfiguratorAttribute允许使用以下属性配置XmlConfigurator

     
      
  • ConfigFile ......
  •   
  • ConfigFileExtension ...
  •   
     

如果未指定ConfigFile或ConfigFileExtension属性,则应用程序配置文件(例如TestApp.exe.config)将用作log4net配置文件。

     

使用示例:

// Configure log4net using the .config file
[assembly: log4net.Config.XmlConfigurator(Watch=true)]
// This will cause log4net to look for a configuration file
// called TestApp.exe.config in the application base
// directory (i.e. the directory containing TestApp.exe)
// The config file will be watched for changes.

我同意它有点含糊不清,但是我解释了示例用法的存在意味着log4net将不使用没有上述属性的.config文件;并且事实上他们指出你必须使用这两个属性中的一个,但是没有说完全遗漏该属性,建议我使用app.config中的属性(或编程调用)。你想要的方式。