vote up 2 vote down star

I am looking at moving away from the Exception Management Application Block in the Enterprise Library for a new ASP.NET MVC site.

Scott Hansleman's post(s) on ELMAH has caught my eye but I don't fully understand the approach. Typically I would suppress some exceptions (ones that are recoverable), log them in a central repository, and then display a message to the user as appropriate.

ELMAH seems focused on, "Logging of nearly all unhandled exceptions.". What about exceptions I want to handle? Can I use the same repository so there is one central location for all exceptions?

How are people using ELMAH in their applications, is it the only exception handling solution being implemented, or is it used in conjunction with another solution?

flag

74% accept rate

1 Answer

vote up 1 vote down check

I've been using an implementation Dan Swatik's HandleErrorAttribute extension for ELMAH. Using this it allows you to both handle the error in your code and log it via ELMAH. This was originally from Atif Aziz, and found in this answer to http://stackoverflow.com/questions/766610/how-to-get-elmah-to-work-with-asp-net-mvc-handleerror-attribute.

link|flag
score, thank you – blu Jun 30 at 3:09
Updated link to Dan Swatik's article - danswatik.com/post/… – Liam Aug 7 at 5:59
I've changed the link in the answer to match. – tvanfosson Aug 7 at 10:41
...Thanks, @Liam. – tvanfosson Aug 7 at 10:42
Dan Swatik link is broken again. Should be: danswatik.com/index.php/2009/… – I Clark Sep 10 at 3:03
show 1 more comment

Your Answer

Get an OpenID
or

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