我们有一个配置为使用 ELMAH 的 ASP.NET MVC 3 应用程序。我们的 Application_Error 方法中也有这样的代码。ELMAH 和我们的自定义代码都记录到数据库中。
protected void Application_Error(object sender, EventArgs e)
{
MvcApplication app = (MvcApplication)sender;
HttpContext httpContext = app.Context;
Exception ex = app.Server.GetLastError();
HttpException httpException = ex as HttpException;
//log the error with our custom logging
Server.ClearError();
if (httpContext.IsCustomErrorEnabled) //only show custom error if enabled in config
{
httpContext.Response.Clear();
httpContext.ClearError();
//show our own custom error page here
}
}
我们看到的问题(不是真正的问题,但无论如何)是 ELMAH 和我们的自定义代码都将异常记录到数据库中。我希望对 Server.ClearError() 和 httpContext.ClearError 的调用会处理该错误,并且它永远不会到达 ELMAH。但是,错误被记录两次这一事实是否意味着 ELMAH 和 application_error 基本上是并行运行的,并且它们都同时收到未处理的异常?如果是这样,是否有告诉 ELMAH 忽略该错误?
我们的意图是仅在出现真正错误时才让 ELMAH 处理错误,例如在注册 elmah 之后但在 MVC 应用程序运行之前的 ASP.NET 管道中。