vote up 56 vote down star
69

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....

flag

4  
Wow, I hope Jeff or Jared would answer this question. They're using ELMAH for Stackoverflow ;) – Jon Limjap Apr 20 at 5:44
2  
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 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 at 11:51
@dswatik Yeah, I guess an error view that appears on the current url, instead of a redirected one, might be cleaner - we'll check it out! – Jarrod Dixon Apr 22 at 22:35
@Jarrod Thanks that would be appreciated :) – dswatik Apr 23 at 0:05
show 1 more comment

3 Answers

vote up 66 vote down check

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 (such as testing) where the HttpContext may not be available. As a result, you want to code 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 if the error should be filtered or not. If not, the error is simply logged. Note that this implementation does not handle mail notifications. If the exception can be signaled then a mail will be sent if configured to do so. Also bear in mind that you may have to take care that if multiple HandleErrorAttribute instances are in effect then duplicate logging does not occur, but above two examples should get your started.

link|flag
Super worked like a charm thanks. – dswatik Apr 23 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 at 15:10
Excellent. I wasn't trying to implement Elmah at all. I was just trying to hook up my own error reporting I've used for years in a way that works well with MVC. Your code gave me a starting point. +1 – Steve Wortham Nov 18 at 3:29
Thank you. I thought I was losing my mind, when really I was obverving the "HandleError is ignored if customErrors set to RemoteOnly and you're on the localhost" behavior. Turns out the code in my Application_Error event as for naught! – Nicholas Piasecki 2 days ago
vote up 0 vote down

Just wondering if someone could tell me WHERE exactly this code should be implemented. I assume that I need to create a Class file (filename.cs) but whwere do I put it? Sorry for the NooBee type question.

-MARK-

link|flag
2  
@Mark Basically you could put it anywhere just as long as you tell your application where to find it (i.e. namespace) for instance I put mine in a folder called utility and its places within my main application namespace... so I just simpily call the attribute [HandleError] and wham it uses this instead of MVC's attribute as this one overrides that. – dswatik Jun 3 at 12:19
I think naming the custom attribute differently from the built-in one would make it a bit more clear. Maybe ElmahHandleErrorAttribute would make it obvious that ELMAH is involved in the attribute. :-) Thanks for the answer @Atif! – Jeremy Wiebe Jul 21 at 19:59
-1 for not being an answer.. – Carl Hörberg Sep 1 at 9:24
vote up 0 vote down

The ELMAH solution with MVC is great! I am new to MVC and have a question about redirecting to a custom error page after logging the error in ELMAH. Would it be part of the subclass above or handled in the controller? I am looking for more of an application wide solution.

-AK

link|flag
@Akornmeier look at this it should help you with that, stackoverflow.com/questions/619895/… – dswatik Oct 25 at 1:08

Your Answer

Get an OpenID
or

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