12345678910111213141516 |
- using System;
- using Library;
- using Microsoft.AspNetCore.Mvc.Filters;
- namespace MySystem
- {
- public class GlobalExceptions : IExceptionFilter
- {
- public void OnException(ExceptionContext context)
- {
- string Message = context.Exception.Message;
- string StackTrace = context.Exception.StackTrace;
- function.WriteLog(DateTime.Now.ToString() + "\r\n" + Message + "\r\n" + StackTrace, "Global全局异常处理日志");
- }
- }
- }
|