1
如何爲NLog呈現的asp *佈局應該工作?NLog記錄請求信息異常
我有以下設置
packages.config
<package id="NLog" version="3.1.0.0" targetFramework="net45" />
<package id="NLog.Extensions" version="1.0.1.0" targetFramework="net45" />
NLog.config
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="errorlog" xsi:type="File" layout="${longdate} [${level}, ${logger}] ${message} ${newline} ${exception:format=tostring} ${newline} ${asp-request:serverVariable=String:queryString=String:item=String:form=String}" fileName="c://temp/${shortdate}-errors.log" />
</targets>
<rules>
<logger name="*" minlevel="Error" writeTo="errorlog"/>
</rules>
</nlog>
記錄 - 自定義消息
public class FileExceptionLogger : ExceptionLogger
{
public override void Log(ExceptionLoggerContext context)
{
LogManager.GetLogger<ExceptionLogger>().Error("Woops!", context.ExceptionContext.Exception);
}
}
當記錄錯誤時,我得到預期的異常信息,但${asp-request...}
部分呈現爲空。
如果我給記錄器的消息的請求對象時,它呈現爲預期的請求信息:
記錄 - 請求消息
public class FileExceptionLogger : ExceptionLogger
{
public override void Log(ExceptionLoggerContext context)
{
LogManager.GetLogger<ExceptionLogger>().Error(context.ExceptionContext.Request, context.ExceptionContext.Exception);
}
}
是不是應該NLOG皮卡上通過它自我請求信息?
如果不是,我該如何登錄mye Woops!
-message?
爲什麼你從'ExceptionLogger'派生你想實現什麼? – nemesv 2014-11-01 08:56:45
我從ExceptionLogger派生,並將我的類註冊爲webapi堆棧中的一個服務,以獲取請求管道中拋出的每個異常的通知,以便我可以通過NLog記錄它們。我可以導致實現IExceptionLogger自己,但我發現重寫一個方法更容易。 您認爲這與問題有關嗎? – Vegar 2014-11-01 21:32:48
http://www.asp.net/web-api/overview/releases/whats-new-in-aspnet-web-api-21#global-error – Vegar 2014-11-01 21:34:18