4

我正在使用 NLog 进行日志记录。我正在尝试设置一种将其输出到 System.Diagnostics.Trace() 的方法,因此我将 NLog.config 文件设置如下:

<targets>
  <target name="debugOutput" xsi:type="Trace" />
</targets>
<rules>
  <logger name="*" minlevel="Debug" writeTo="debugOutput" />
</rules>

这适用于除 Error() 和 Fatal() 之外的所有日志记录级别。

例如,下面的代码:

private static readonly Logger _logger = LogManager.GetCurrentClassLogger();
...
_logger.Trace("Sample trace message\n");
_logger.Debug("Sample debug message\n");
_logger.Info("Sample informational message\n");
_logger.Warn("Sample warning message\n");
_logger.Error("Sample error message\n");
_logger.Fatal("Sample fatal error message\n");

当 _logger.Error() 和 _logger.Fatal() 被调用时抛出异常:

2012-09-28 12:08:04.9296|DEBUG|ClassLibraryUsingNLog.Test|Sample debug message

2012-09-28 12:08:04.9636|INFO|ClassLibraryUsingNLog.Test|Sample informational message

2012-09-28 12:08:04.9906|WARN|ClassLibraryUsingNLog.Test|Sample warning message

---- DEBUG ASSERTION FAILED ----
---- Assert Short Message ----
2012-09-28 12:08:05.0176|ERROR|ClassLibraryUsingNLog.Test|Sample error message

---- Assert Long Message ----

   at NLog.Targets.TraceTarget.Write(LogEventInfo logEvent)
   at NLog.Targets.Target.Write(AsyncLogEventInfo logEvent)
   at NLog.Targets.Target.WriteAsyncLogEvent(AsyncLogEventInfo logEvent)
   at NLog.LoggerImpl.WriteToTargetWithFilterChain(TargetWithFilterChain targetListHead, LogEventInfo logEvent, AsyncContinuation onException)
   at NLog.LoggerImpl.Write(Type loggerType, TargetWithFilterChain targets, LogEventInfo logEvent, LogFactory factory)
   at NLog.Logger.WriteToTargets[T](LogLevel level, IFormatProvider formatProvider, T value)
   at NLog.Logger.Error(String message)
   at ClassLibraryUsingNLog.Test.Func() in c:\Test\CS4.x\ClassLibraryUsingNLog\Test.cs:line 15
   at ConsoleAppIndirectlyUsesNLog.Program.Main(String[] args) in C:\Test\CS4.x\ConsoleAppIndirectlyUsesNLog\Program.cs:line 11

First-chance exception at 0x7686b9bc in ConsoleAppIndirectlyUsesNLog.exe: Microsoft C++ exception: EEMessageException at memory location 0x0053e8d4..
---- DEBUG ASSERTION FAILED ----
---- Assert Short Message ----
2012-09-28 12:08:06.7936|FATAL|ClassLibraryUsingNLog.Test|Sample fatal error message

---- Assert Long Message ----

   at NLog.Targets.TraceTarget.Write(LogEventInfo logEvent)
   at NLog.Targets.Target.Write(AsyncLogEventInfo logEvent)
   at NLog.Targets.Target.WriteAsyncLogEvent(AsyncLogEventInfo logEvent)
   at NLog.LoggerImpl.WriteToTargetWithFilterChain(TargetWithFilterChain targetListHead, LogEventInfo logEvent, AsyncContinuation onException)
   at NLog.LoggerImpl.Write(Type loggerType, TargetWithFilterChain targets, LogEventInfo logEvent, LogFactory factory)
   at NLog.Logger.WriteToTargets[T](LogLevel level, IFormatProvider formatProvider, T value)
   at NLog.Logger.Fatal(String message)
   at ClassLibraryUsingNLog.Test.Func() in c:\Test\CS4.x\ClassLibraryUsingNLog\Test.cs:line 16
   at ConsoleAppIndirectlyUsesNLog.Program.Main(String[] args) in C:\Test\CS4.x\ConsoleAppIndirectlyUsesNLog\Program.cs:line 11

但是,如果我将配置文件更改为输出到 OutputDebugString,则通过将 xsi:type 更改为“OutputDebugString”,如下所示:

<targets>
  <target name="debugOutput" xsi:type="OutputDebugString" />
</targets>
<rules>
  <logger name="*" minlevel="Debug" writeTo="debugOutput" />
</rules>

然后一切都按预期工作,没有任何例外。我在调试输出窗口中得到这个输出(在更改项目设置以支持非托管调试之后):

2012-09-28 12:16:13.4166|DEBUG|ClassLibraryUsingNLog.Test|Sample debug message
2012-09-28 12:16:13.4166|INFO|ClassLibraryUsingNLog.Test|Sample informational message
2012-09-28 12:16:13.4166|WARN|ClassLibraryUsingNLog.Test|Sample warning message
2012-09-28 12:16:13.4266|ERROR|ClassLibraryUsingNLog.Test|Sample error message
2012-09-28 12:16:13.4266|FATAL|ClassLibraryUsingNLog.Test|Sample fatal error message

有没有办法通过输出到 System.Diagnostics.Trace() 来完成这项工作,而不会引发 Logger.Error() 和 Logger.Fatal() 的异常?为什么它会这样?

4

3 回答 3

4

除了第一个答案:

NLog TraceTarget 在 LogLevel >= LogLevel.Error 时调用 Trace.Fail

Trace.Fail 方法记录在这里http://msdn.microsoft.com/en-us/library/95s7fba5.aspx

问题的原因似乎是:

默认跟踪侦听器的默认行为是当应用程序在用户界面模式下运行时将消息参数输出到消息框,并输出到 Listeners 集合中的 TraceListener 实例。

您可以在控制台应用程序中演示问题

 static void Main( string[ ] args ){
  Trace.TraceInformation( "Hello world" );
  Trace.Fail("A failure");
}

您可以通过在添加自己的 TraceListener 之前删除 DefaultTraceListener 来“修复”此问题

static void Main( string[ ] args ){
  Trace.Listeners.Clear();
  Trace.Listeners.Add( new ConsoleTraceListener( ) );
  Trace.TraceInformation( "Hello world" );
  Trace.Fail("A failure");
}

或者,您可以将 DefaultTraceListener 的 AssertUiEnabled 属性设置为 false。

static void Main( string[ ] args ){
  Trace.Listeners.OfType<DefaultTraceListener>().First().AssertUiEnabled = false;
  Trace.TraceInformation( "Hello world" );
  Trace.Fail("A failure");
}

这会抑制断言失败对话框,但跟踪输出仍包含虚假堆栈转储

如果您只想将日志信息发送到 Visual Studion 输出窗口,请使用 DebuggerTarget

于 2012-12-19T03:23:01.507 回答
2

在内部,TraceTarget 使用System.Diagnostics.Trace.Fail来编写消息。

下面是 NLog TraceTarget 的 Write 方法的代码:

protected override void Write(LogEventInfo logEvent)
{
    if (logEvent.Level >= LogLevel.Error)
    {
        Trace.Fail(this.Layout.Render(logEvent));
    }
    else
    {
        Trace.WriteLine(this.Layout.Render(logEvent));
    }
}

我不知道为什么 Trace.Fail 显然失败了。但是,知道 NLog 使用 Trace.Fail,您可以尝试使用 Trace.Fail(在您使用 NLog 记录的同一个调用站点),看看您是否可以诊断 Trace.Fail 出了什么问题。它可能与 app.config 文件中的 System.Diagnostics 配置(或缺少相同配置)有关。

请注意,在 Trace.Fail 的 MSDN 文档中,它说如果 DefaultTraceListener 不存在,则使用 MessageBox。我在您的输出中注意到您正在使用控制台应用程序。MessageBox 在控制台应用程序的上下文中是否可能无法正常工作?

这是 Scott Hanselman 发表的一篇相对较旧的博客文章的链接,可能会对您的问题有所了解。在底部,他描述了 Trace.Fail 在非 UI 上下文中的问题,并提出了一个可能对您有用的解决方案。

总而言之,他建议将它(特别是assertuienabled标志)放在您的 app.config/web.config 中(或通过代码设置)。

<configuration>
   <system.diagnostics>
      <assert assertuienabled="false" logfilename="c:\log.txt"/>
   </system.diagnostics>
</configuration>

祝你好运!

于 2012-09-28T14:30:24.117 回答
1

NLog 4.5 引入了独立于 LogLevel的rawWrite=true转发设置。Trace.WriteLine

<targets>
  <target xsi:type="Trace" name="debugOutput" rawWrite="true" />
</targets>

另见:https ://github.com/nlog/nlog/wiki/Trace-target

PS 由于 NLog 2.0.1 then onlyLogLevel.Fatal被映射到Trace.Fail

于 2019-12-28T15:01:51.187 回答