Elmah没有记录异常

Yuc*_*cel 6 c# error-handling asp.net-mvc elmah

在我的MVC Web项目中.我试图向访问者显示自定义错误页面,而不使用web.config中的"custromerrors"元素.

我可以捕获如下的异常

protected void Application_Error(object sender, EventArgs e)
{

    Exception exception = Server.GetLastError();

    bool success = RaiseErrorSignal(exception);

    Response.Clear();

    HttpException httpException = exception as HttpException;

    RouteData routeData = new RouteData();
    routeData.Values.Add("controller", "Error");

    if (httpException == null)
    {
        routeData.Values.Add("action", "Index");
    }
    else //It's an Http Exception, Let's handle it.
    {
        switch (httpException.GetHttpCode())
        {
            case 404:
                // Page not found.
                routeData.Values.Add("action", "Error404");
                break;
            case 500:
                // Server error.
                routeData.Values.Add("action", "Error500");
                break;

            // Here you can handle Views to other error codes.
            // I choose a General error template  
            default:
                routeData.Values.Add("action", "Index");
                break;
        }
    }

    // Pass exception details to the target error View.
    routeData.Values.Add("error", exception);

    // Clear the error on server.
    Server.ClearError();

    // Call target Controller and pass the routeData.
    IController errorController = new ProjectName.WebSite.Controllers.ErrorController();
    errorController.Execute(new RequestContext(
         new HttpContextWrapper(Context), routeData));


}

private static bool RaiseErrorSignal(Exception e)
{
    var context = HttpContext.Current;
    if (context == null)
        return false;
    var signal = ErrorSignal.FromContext(context);
    if (signal == null)
        return false;
    signal.Raise(e, context);
    return true;
}
Run Code Online (Sandbox Code Playgroud)

但Elmah无法记录错误,我也提出错误信号.

Yuc*_*cel 9

我发现了问题,我错过了一个web.config部分.我添加了"ErrorLog"模块<system.webserver><modules>.

我还需要将其添加到<system.web><httpModules>.

添加后,Elmah开始记录错误.

此外,我不需要调用ErrorSignal.Raise()方法,Elmah可以在没有信令的情况下检测错误.

  • 另一个注意事项:在我的情况下,它是App_Data文件夹的错误写入权限 (5认同)