vote up 3 vote down star

Some exceptions (web service calls) of a Web Application are not handled, because I want to show them on a Custom Error Page, passing from the Application_Exception method. Porting my Web Application to ASP.Net 2.0, these events started to appear in the Event Viewer (Web Events, new feature of ASP.Net 2.0).

Is there a way to disable ASP.Net 2.0 Web Events, or to avoid the automatic logging in the Event Viewer?

flag

56% accept rate

2 Answers

vote up 2 vote down check

I think you can disable HealtMonitoring in the web.config inside the framework folder, or change the rules to log some exceptions

link|flag
vote up 1 vote down

You probably want to configure health monitoring instead of disabling it. For the exceptions you don't want displayed on the custom error page, you'll want the detailed information that is logged by the default health monitoring configuration.

link|flag

Your Answer

Get an OpenID
or

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