vote up 0 vote down star

I am trying to use ELMAH for my error logging, and I've tried several others

Neither of which seem to log errors when the custom error feature in ASP.NET is enabled

I'm using the [HandleError] attribute in all my controllers, at first I thought that was the problem but it isn't just whenever I enable the custom error pages it doesn't log any errors even though half these error logging libraries say they are suppose to.

What am I doing wrong?

flag

1 Answer

vote up 2 vote down check

A couple things to check are that you have you HttpModule registered for ELMAH. You don't have any other process intercepting the errors.

link|flag
Yeah I have everything setup properly from what I can see and nothing else intercepting errors except like I said the [HandleError] Attribute..hmm think I just answered my own question. – dswatik Apr 19 at 21:15
Yep thats what it was the [HandleError] attribute. – dswatik Apr 19 at 21:24
You have to make your own HandleError to log the errors and handle the error routing – Nick Berardi Apr 20 at 15:05

Your Answer

Get an OpenID
or

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