NLog Inner Exception Loggin

最后都变了- 提交于 2020-06-12 02:14:53

问题


I'm trying to log inner exception messages by using NLog. This is a piece of my NLog.config file:

    <target name="errors" xsi:type="File" layout="${longdate}${newline}
        - Exception Message: ${exception:format=Message}${newline}
        - InnerException Message: ${exception:innerExceptionSeparator=TEXT}${newline}"
        fileName="\Logs\errors-${shortdate}.log"
       concurrentWrites="true" />
    </targets>

I'm getting the same message See the inner exception for detailsfor both Exception Message and InnerException Message lines of NLog.config file.


回答1:


This worked for me:

  <target name="errors" xsi:type="File" layout="
            ${message}
            ${onexception:EXCEPTION OCCURRED\:
            ${exception:format=type,message,method:maxInnerExceptionLevel=5:innerFormat=shortType,message,method}}"
            fileName="\Logs\errors-${shortdate}.log"
            concurrentWrites="true"
            />
  </targets>

Property descriptions :

  • ${exception:maxInnerExceptionLevel=N} - controls how many inner exceptions are logged. defaults to zero for backwards compatibility.
  • ${exception:innerExceptionSeparator=TEXT} - defines text that separates inner exceptions. Defaults to new line string (platform specific).
  • ${exception:innerFormat=FORMATSTRING} - defines the format of inner exceptions the same way that ${exception:format=FORMATSTRING} defines the format of the top-level exception. If this parameter is not specified, the same format is used for both top-level and inner exceptions.

Here is the official Nlog Documentation for logging inner exceptions




回答2:


another possibility is to add new line between inner exception is to use linebreak &#xD;&#xA in the xml, since innerExceptionSeparator is not parsed in some special way and is loaded as it is written. So innerExceptionSeparator=${newline} will not work.

layout="${message}${onexception:${newline}${exception:maxInnerExceptionLevel=10:innerExceptionSeparator=&#xD;&#xA;&#x9;:format=shortType,message}} 

this will cause inner exception text to be started from the new line and indented by tab character

however this works only if ILogger.Error(Exception, string) method is used. ILogger.Error(Exception) ignores this layout



来源:https://stackoverflow.com/questions/44287491/nlog-inner-exception-loggin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!