log4net的有EventLogAppender不记录(log4net with EventLog

2019-08-17 04:03发布

什么也没有发生具有以下配置。

App.config中

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
  </configSections>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
  <log4net>
    <appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
      </layout>
    </appender>
  </log4net>
</configuration>

Form1.cs的(实施例)

public partial class Form1 : Form
{
    private static readonly ILog log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

    public Form1()
    {
        InitializeComponent();

        log.Fatal("Test!");
    }
}

Answer 1:

这是因为丢失了根配置,所以你需要像

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
      <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
  </configSections>
  <startup>
      <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
  </startup>
  <log4net debug="true">
      <appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
        <applicationName value="MyApp" />
        <layout type="log4net.Layout.PatternLayout">
          <conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
        </layout>
      </appender>


      <root>
        <level value="All" />
        <appender-ref ref="EventLogAppender" />
      </root>


  </log4net>
</configuration>

还要注意的是,如果你的程序APP.EXE叫,那么你就需要所谓的APP.EXE事件日志源。 如果不存在,那么log4net的将尝试创建它,但是这需要管理员权限,所以你可能需要以创建该事件源至少一次运行程序作为管理员。 为了避免这种情况,事件源通常会被作为会已经运行作为管理员在安装过程中创建的。



Answer 2:

您还应该加入:

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

在项目的AssemblyInfo.cs中。 这将初始化记录器。 并把log4net的到文件名为log4net.config。



Answer 3:

请确保你给写权限的用户:

HKEY_LOCAL_MACHINE \ SYSTEM \ ControlSet001 \服务\事件日志\ MyApp的

如果你想添加更多logers必须遵循这种命名:

<root name="EventLog">
<level value="ALL"/>
<appender-ref ref="FirstLog"/>
</root>

<logger name="FileLogger" additivity="false">
<level value="ALL" />
<appender-ref ref="Secong_Log" />
</logger>

祝好运。



文章来源: log4net with EventLogAppender doesn't log