配置log日志
This commit is contained in:
parent
76741ec96e
commit
bb8a3598a7
|
@ -10,8 +10,8 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Message { get; set; }
|
public string Message { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 客户端存储编号
|
/// 异常编号
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Storage { get; set; }
|
public string Id { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,11 +18,11 @@ namespace FAuth.Models
|
||||||
this.Logger = logger;
|
this.Logger = logger;
|
||||||
}
|
}
|
||||||
public override void OnException(ExceptionContext context) {
|
public override void OnException(ExceptionContext context) {
|
||||||
this.Logger.LogError(context.Exception.ToString());
|
var id = Guid.NewGuid().ToString("N");
|
||||||
var storage = Guid.NewGuid().ToString();
|
this.Logger.LogError(id + "|" + context.Exception.ToString());
|
||||||
var result = new ApiErrorResult {
|
var result = new ApiErrorResult {
|
||||||
Message = context.Exception.Message,
|
Message = context.Exception.Message,
|
||||||
Storage = storage,
|
Id = id,
|
||||||
};
|
};
|
||||||
context.Result = new JsonResult(result) { StatusCode = StatusCodes.Status500InternalServerError };
|
context.Result = new JsonResult(result) { StatusCode = StatusCodes.Status500InternalServerError };
|
||||||
}
|
}
|
||||||
|
|
41
FAuth/nlog.config
Normal file
41
FAuth/nlog.config
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
autoReload="true">
|
||||||
|
|
||||||
|
<!-- enable asp.net core layout renderers -->
|
||||||
|
<extensions>
|
||||||
|
<add assembly="NLog.Web.AspNetCore"/>
|
||||||
|
</extensions>
|
||||||
|
|
||||||
|
<!-- the targets to write to -->
|
||||||
|
<targets>
|
||||||
|
<!-- write logs to file -->
|
||||||
|
<target xsi:type="File" name="allfile" fileName="logs\log-all-${shortdate}.log"
|
||||||
|
layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />
|
||||||
|
|
||||||
|
<!-- another file log, only own logs. Uses some ASP.NET core renderers -->
|
||||||
|
<target xsi:type="File" name="ownFile-web" fileName="logs\nlog-own-${shortdate}.log"
|
||||||
|
layout="${longdate}|${event-properties:item=EventId_Id}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}|url: ${aspnet-request-url}|action: ${aspnet-mvc-action}" />
|
||||||
|
|
||||||
|
<target xsi:type="File" name="userLog" fileName="logs\UserLog-${shortdate}.log"
|
||||||
|
layout="${longdate}|${message} ${exception:format=tostring}|url: ${aspnet-request-url}|action: ${aspnet-mvc-action}" />
|
||||||
|
|
||||||
|
<target name="logconsole" xsi:type="Console" />
|
||||||
|
</targets>
|
||||||
|
|
||||||
|
<!-- rules to map from logger name to target -->
|
||||||
|
<rules>
|
||||||
|
<!--All logs, including from Microsoft-->
|
||||||
|
<logger name="*" minlevel="Trace" writeTo="allfile" />
|
||||||
|
|
||||||
|
<!--<logger name="FAuth.Controllers.api.UserController" minlevel="Trace" writeTo="userLog" />
|
||||||
|
<logger name="FAuth.Models.ApiExceptionFilterAttribute" minlevel="Trace" writeTo="userLog" />-->
|
||||||
|
|
||||||
|
<logger name="*" minlevel="Debug" writeTo="logconsole" />
|
||||||
|
<!--Skip non-critical Microsoft logs and so log only own logs-->
|
||||||
|
<logger name="Microsoft.*" maxlevel="Info" final="true" />
|
||||||
|
<!-- BlackHole without writeTo -->
|
||||||
|
<logger name="*" minlevel="Trace" writeTo="ownFile-web" />
|
||||||
|
</rules>
|
||||||
|
</nlog>
|
Loading…
Reference in New Issue
Block a user