c# - 带有 log4net 的 Raygun 不记录

标签 c# asp.net log4net raygun.io raygun

我有一个简单的控制台应用程序。下载 log4net nuget 包以及 log4net raygun nuget 包:https://www.nuget.org/packages/log4net.Raygun/ .我已将我的应用程序设置为记录异常和信息消息,并且确实在我的日志文件中获取了这些信息,但不在 raygun 仪表板中,我也没有收到来自 raygun.io 的电子邮件。我做错了什么?

private static readonly ILog Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
    Log.Error(e);
}

private static void Main(string[] args)
{
    XmlConfigurator.Configure();

    // Unhandled exceptions
    AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
throw new Exception("test exception");

}

网络配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- log4net -->
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  </configSections>

  <log4net>
    <appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">
      <file value="ErrorLog//ErrorLog.txt" />
      <lockingModel type="log4net.Appender.FileAppender+MinimalLock" />
      <appendToFile value="true" />
      <rollingStyle value="Size" />
      <maxSizeRollBackups value="2" />
      <maximumFileSize value="1MB" />
      <staticLogFileName value="true" />
      <layout type="log4net.Layout.PatternLayout">
        <param name="ConversionPattern" value="%d [%t] %-5p %c %m%n" />
      </layout>
    </appender>

    <appender name="RaygunAppender" type="log4net.Raygun.RaygunAppender, log4net.Raygun">
      <threshold value="DEBUG" />
      <apiKey value="MY SUPER AWESOME KEY HERE" />
      <!-- Attempt to send errors to raygun 15 times -->
      <retries value="15" />
      <!-- Wait 1 minute between retry attempts -->
      <timeBetweenRetries value="00:01:00" />
      <!-- Toggles whether to only send exceptions to raygun, or to also send messages logged to ERROR -->
      <onlySendExceptions value="false" />
      <!-- Optional filters for filtering exceptions and messages before sending to raygun -->
      <!--<exceptionFilter value="SomeOtherAssembly.SensitiveInformationMessageFilter, SomeOtherAssembly" />
      <renderedMessageFilter value="SomeOtherAssembly.SensitiveInformationMessageFilter, SomeOtherAssembly" />-->
    </appender>

    <root>
      <level value="ALL" />
      <appender-ref ref="LogFileAppender" />
      <appender-ref ref="RaygunAppender" />
    </root>
  </log4net>

    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-1.2.13.0" newVersion="1.2.13.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

编辑: 我添加了调试和“XmlConfigurator.Configure();”这是我得到的(但是,Raygun.io 仪表板中仍然没有错误显示):

...
log4net: RaygunAppender: Building Raygun message
log4net: RaygunAppender: Resolving application assembly
log4net: RaygunAppender: No exception object found in error, creating raygun error message from the rendered message and calling class
log4net: RaygunAppender: Sending Raygun message in a background task. Retries: '15', TimeBetweenRetries: '00:01:00'

最佳答案

你需要告诉 log4net 读取配置,在你的 main 方法中添加以下行:

log4net.Config.XmlConfigurator(Watch = true);

或者将以下属性放入您的 assamblyinfo.cs 中:

[assembly: log4net.Config.XmlConfigurator(Watch = true)]

如果这不起作用,您可以启用 log4net 内部调试以查看 log4net 内部代码中发生了什么:

<configuration>
...
    <appSettings>
        <add key="log4net.Internal.Debug" value="true"/>
    </appSettings>

...

    <system.diagnostics>
        <trace autoflush="true">
            <listeners>
                <add 
                    name="textWriterTraceListener" 
                    type="System.Diagnostics.TextWriterTraceListener" 
                    initializeData="C:\tmp\log4net.txt" />
            </listeners>
        </trace>
    </system.diagnostics>
</configuration>

Log4net FAQ

关于c# - 带有 log4net 的 Raygun 不记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28551817/

相关文章:

c# - 如何加快大型 C# 解决方案的编译

c# - WPF 创建同级窗口并关闭当前窗口

asp.net - <pages enableEventValidation ="false"> 的目的

javascript - "chkAutoPick.Checked ? string.Empty : "来自 : "+ txtDtFrom.Text" in javascript 的含义是什么

asp.net - 使光标指针忙碌

c# - log4net 不写入文件

c# - 将 POST FromBody 转换为 HttpRequestMessage - 需要对请求正文进行反序列化

c# - 使标签多行

c# - log4net 紧凑框架 3.5 没有 app.config 来添加文件附加程序

.net - 如何在 Unity 中使用 log4net?