I am trying to use ELMAH to log errors in my ASP.NET MVC application, however when I use the [HandleError] attribute on my controllers ELMAH doesn't log any errors when they occur.

As I am guessing its because ELMAH only logs unhandled errors and the [HandleError] attribute is handling the error so thus no need to log it.

How do I modify or how would I go about modifying the attribute so ELMAH can know that there was an error and log it..

Edit: Let me make sure everyone understands, I know I can modify the attribute thats not the question I'm asking... ELMAH gets bypassed when using the handleerror attribute meaning it won't see that there was an error because it was handled already by the attribute... What I am asking is there a way to make ELMAH see the error and log it even though the attribute handled it...I searched around and don't see any methods to call to force it to log the error....

link|improve this question

10  
Wow, I hope Jeff or Jared would answer this question. They're using ELMAH for Stackoverflow ;) – Jon Limjap Apr 20 '09 at 5:44
5  
Hmm, strange - we don't use the HandleErrorAttribute - Elmah is setup in our web.config's <modules> section. Are there benefits to using the HandleErrorAttribute? – Jarrod Dixon Apr 22 '09 at 3:39
1  
Well yea I think you don't get that annoying querystring in the URL plus when an error occurs the url doesn't get redirected to the one specified in the custom error in the web.config... just cleaner to me – dswatik Apr 22 '09 at 11:51
7  
@Jarrod - it'd be nice to see what's "custom" about your ELMAH fork. – Scott Hanselman Apr 24 '09 at 0:07
1  
@dswatik You can also prevent redirects by setting redirectMode to ResponseRewrite in web.config. See blog.turlov.com/2009/01/… – Pavel Chuchuva Jul 26 '10 at 6:49
show 2 more comments
feedback

6 Answers

up vote 304 down vote accepted
+100

You can subclass HandleErrorAttribute and override its OnException member (no need to copy) so that it logs the exception with ELMAH and only if the base implementation handles it. The minimal amount of code you need is as follows:

namespace MvcDemo
{
    using System;
    using System.Web;
    using System.Web.Mvc;
    using Elmah;

    public class HandleErrorAttribute : System.Web.Mvc.HandleErrorAttribute
    {
        public override void OnException(ExceptionContext context)
        {
            base.OnException(context);
            if (context.ExceptionHandled)
                RaiseErrorSignal(context.Exception);
        }

        private static void RaiseErrorSignal(Exception e)
        {
            var context = HttpContext.Current;
            ErrorSignal.FromContext(context).Raise(e, context);
        }
    }
}

The base implementation is invoked first, giving it a chance to mark the exception as being handled. Only then is the exception signaled. The above code is simple and may cause issues if used in an environment where the HttpContext may not be available, such as testing. As a result, you will want code that is that is more defensive (at the cost of being slightly longer):

namespace MvcDemo
{
    using System;
    using System.Web;
    using System.Web.Mvc;
    using Elmah;

    public class HandleErrorAttribute : System.Web.Mvc.HandleErrorAttribute
    {
        public override void OnException(ExceptionContext context)
        {
            base.OnException(context);

            var e = context.Exception;
            if (!context.ExceptionHandled   // if unhandled, will be logged anyhow
                || RaiseErrorSignal(e)      // prefer signaling, if possible
                || IsFiltered(context))     // filtered?
                return;

            LogException(e);
        }

        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;
        }

        private static bool IsFiltered(ExceptionContext context) 
        {
            var config = context.HttpContext.GetSection("elmah/errorFilter") 
                         as ErrorFilterConfiguration;

            if (config == null) 
                return false;

            var testContext = new ErrorFilterModule.AssertionHelperContext(
                                      context.Exception, HttpContext.Current);

            return config.Assertion.Test(testContext);
        }

        private static void LogException(Exception e)
        {
            var context = HttpContext.Current;
            ErrorLog.GetDefault(context).Log(new Error(e, context));
        }
    }
}

This second version will try to use error signaling from ELMAH first, which involves the fully configured pipeline like logging, mailing, filtering and what have you. Failing that, it attempts to see whether the error should be filtered. If not, the error is simply logged. This implementation does not handle mail notifications. If the exception can be signaled then a mail will be sent if configured to do so.

You may also have to take care that if multiple HandleErrorAttribute instances are in effect then duplicate logging does not occur, but the above two examples should get your started.

link|improve this answer
3  
Super worked like a charm thanks. – dswatik Apr 23 '09 at 2:59
I can't get the ElmahHandleErrorAttribute to work My present configuration works fine using elmah in modules and handlers I have removed the [HandleError] from my controllers I want to try the ElmahHandleErrorAttribute I have set the ElmahHandleErrorAttributeon my ApplicationController (the base class of all my controllers) but it's never called when I debug and set a break point in OnException what am I missing ? – freddoo Nov 5 '09 at 15:10
1  
When you have a chain of HandleErrors, like [HandleError(Order = 1, ExceptionType = typeof(NotFound), View = "Error/NotFound"), HandleError(Order = 2, View = "Error/Unexpected")] you end up with ELMAH sending you a chain of emails for a single error. Is there any way to avoid that? – J. Pablo Fernández Jan 8 '10 at 21:41
1  
There seems to be a bug in the above code. The first code logs if exception is handled but the latter tries to log when the exception is not handled. I think we only want to log when it's handled by the base class. – Jiho Han May 19 '10 at 18:25
8  
You don't need to subclass HandleErrorAttribute. You can simply have an IExceptionFilter implementation and have it registered together with the HandleErrorAttribute. Also I don't get why do you need to have a fallback in case ErrorSignal.Raise(..) fails. If the pipeline is badly configured it should be fixed. For a 5 liner IExceptionFilter check point 4. here - ivanz.com/2011/05/08/… – Ivan Zlatev May 9 '11 at 12:22
show 8 more comments
feedback

Sorry, but I think the accepted answer is an overkill. All you need to do is this:

public class ElmahHandledErrorLoggerFilter : IExceptionFilter
{
    public void OnException (ExceptionContext context)
    {
        // Log only handled exceptions, because all other will be caught by ELMAH anyway.
        if (context.ExceptionHandled)
            ErrorSignal.FromCurrentContext().Raise(context.Exception);
    }
}

and then register it (order is important) in Global.asax.cs:

public static void RegisterGlobalFilters (GlobalFilterCollection filters)
{
    filters.Add(new ElmahHandledErrorLoggerFilter());
    filters.Add(new HandleErrorAttribute());
}
link|improve this answer
2  
+1 Very nice, no need to extend the HandleErrorAttribute, no need to override OnException on BaseController. This is suppose to the the accepted answer. – CallMeLaNN Jun 10 '11 at 7:35
1  
@bigb I think you would have to wrap the exception in your own exception type to append things to the exception message, etc (e.g. new UnhandledLoggedException(Exception thrown) which appends something to the Message prior to returning it. – Ivan Zlatev Jul 27 '11 at 22:24
6  
Atif Aziz created ELMAH, I'd go with his answer – jamiebarrow Aug 5 '11 at 9:01
13  
@jamiebarrow I didn't realize that, but his answer is ~2 years old and probably the API has been simplified to support the question's use cases in a shorter more self-contained manner. – Ivan Zlatev Aug 5 '11 at 20:38
1  
@Ivan Zlatev really can'tt get to work ElmahHandledErrorLoggerFilter() elmah just logging unhandled errors, but not handled. I registered filters in correct order as you mentioned that, any thoughts? – bigb Sep 14 '11 at 6:21
show 4 more comments
feedback

You can take the code above and go one step further by introducing a custom controller factory that injects the HandleErrorWithElmah attribute into every controller.

For more infomation check out my blog series on logging in MVC. The first article covers getting Elmah set up and running for MVC.

There is a link to downloadable code at the end of the article. Hope that helps.

http://dotnetdarren.wordpress.com/

link|improve this answer
5  
Seems to me like it would be a lot easier to just stick it on a base controller class! – Nathan Taylor Jul 28 '10 at 6:30
1  
Darren's series above on logging and exception handling is well worth the read!!! Very thorough! – Ryan Anderson Aug 19 '10 at 5:58
feedback

I'm new in ASP.NET MVC. I faced the same problem, the following is my workable in my Erorr.vbhtml (it work if you only need to log the error using Elmah log)

@ModelType System.Web.Mvc.HandleErrorInfo

    @Code
        ViewData("Title") = "Error"
        Dim item As HandleErrorInfo = CType(Model, HandleErrorInfo)
        //To log error with Elmah
        Elmah.ErrorLog.GetDefault(HttpContext.Current).Log(New Elmah.Error(Model.Exception, HttpContext.Current))
    End Code

<h2>
    Sorry, an error occurred while processing your request.<br />

    @item.ActionName<br />
    @item.ControllerName<br />
    @item.Exception.Message
</h2> 

It is simply!

link|improve this answer
This is by far the simplest solution. No need to write or register custom handlers and stuff. Works fine for me – ThiagoAlves Aug 27 '11 at 15:38
Very short and simple, nice! – Endy Tjahjono Sep 8 '11 at 11:02
Will be ignored for any JSON / non-HTML responses. – Craig Stuntz Jan 13 at 22:33
feedback

This is exactly what I needed for my MVC site configuration!

I added a little modification to the OnException method to handle multiple HandleErrorAttribute instances, as suggested by Atif Aziz:

bear in mind that you may have to take care that if multiple HandleErrorAttribute instances are in effect then duplicate logging does not occur.

I simply check context.ExceptionHandled before invoking the base class, just to know if someone else handled the exception before current handler.
It works for me and I post the code in case someone else needs it and to ask if anyone knows if I overlooked anything.

Hope it is useful:

public override void OnException(ExceptionContext context)
{
    bool exceptionHandledByPreviousHandler = context.ExceptionHandled;

    base.OnException(context);

    Exception e = context.Exception;
    if (exceptionHandledByPreviousHandler
        || !context.ExceptionHandled  // if unhandled, will be logged anyhow
        || RaiseErrorSignal(e)        // prefer signaling, if possible
        || IsFiltered(context))       // filtered?
        return;

    LogException(e);
}
link|improve this answer
You don't seem to have an "if" statement around invoking base.OnException().... And (exceptionHandledByPreviousHandler || !context.ExceptionHandled || ...) cancel each other out and will always be true. Am I missing something? – joelvh Jan 18 '11 at 18:17
First I check if any other Handler, invoked before the current, managed the exception and I store the result in the variable: exceptionHandlerdByPreviousHandler. Then I give the chance to the current handler to manage the exception itself: base.OnException(context). – ilmatte Jun 13 '11 at 8:31
First I check if any other Handler, invoked before the current, managed the exception and I store the result in the variable: exceptionHandlerdByPreviousHandler. Then I give the chance to the current handler to manage the exception itself: base.OnException(context). If the exception was not previously managed it can be: 1 - It's managed by the current handler, then: exceptionHandledByPreviousHandler = false and !context.ExceptionHandled = false 2 - It's not managed by the current handler and : exceptionHandledByPreviousHandler = false and !context.ExceptionHandled true. Only case 1 will log. – ilmatte Jun 13 '11 at 8:39
feedback

For me it was very important to get email logging working. After some time I discover that this need only 2 lines of code more in Atif example.

public class HandleErrorWithElmahAttribute : HandleErrorAttribute
{
    static ElmahMVCMailModule error_mail_log = new ElmahMVCMailModule();

    public override void OnException(ExceptionContext context)
    {
        error_mail_log.Init(HttpContext.Current.ApplicationInstance);
        [...]
    }
    [...]
}

I hope this will help someone :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.