背景
我正在为客户端开发 API 服务层,并要求我在全局范围内捕获并记录所有错误。
因此,虽然像未知端点(或动作)这样的东西很容易通过使用 ELMAH 或添加类似这样的东西来处理Global.asax
:
protected void Application_Error()
{
Exception unhandledException = Server.GetLastError();
//do more stuff
}
. . .unhandled 与路由无关的错误不会被记录。例如:
public class ReportController : ApiController
{
public int test()
{
var foo = Convert.ToInt32("a");//Will throw error but isn't logged!!
return foo;
}
}
我还尝试[HandleError]
通过注册此过滤器来全局设置属性:
filters.Add(new HandleErrorAttribute());
但这也不会记录所有错误。
问题/问题
如何拦截像/test
上面调用产生的错误,以便我可以记录它们?似乎这个答案应该是显而易见的,但我已经尝试了到目前为止我能想到的一切。
理想情况下,我想在错误日志中添加一些内容,例如请求用户的 IP 地址、日期、时间等。我还希望能够在遇到错误时自动向支持人员发送电子邮件。只要我能在这些错误发生时拦截它们,我就能做到这一切!
解决!
感谢 Darin Dimitrov,我接受了他的回答,我明白了这一点。 WebAPI处理错误的方式与常规 MVC 控制器不同。
这是有效的:
1) 将自定义过滤器添加到您的命名空间:
public class ExceptionHandlingAttribute : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext context)
{
if (context.Exception is BusinessException)
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.InternalServerError)
{
Content = new StringContent(context.Exception.Message),
ReasonPhrase = "Exception"
});
}
//Log Critical errors
Debug.WriteLine(context.Exception);
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.InternalServerError)
{
Content = new StringContent("An error occurred, please try again or contact the administrator."),
ReasonPhrase = "Critical Exception"
});
}
}
2) 现在在WebApiConfig类中全局注册过滤器:
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute("DefaultApi", "api/{controller}/{action}/{id}", new { id = RouteParameter.Optional });
config.Filters.Add(new ExceptionHandlingAttribute());
}
}
或者[ExceptionHandling]
你可以跳过注册,只用属性装饰一个控制器。