Turn off EventLogWebEventProvider

  • Thread starter Thread starter Bird
  • Start date Start date
B

Bird

Hi,
By default, EventLogWebEventProvider is enabled.
Can I disable it? (to avoid events written to Windows Event Log)

Thanks!
 
in web.config:

<healthMonitoring>
<rules>
<remove name="All Errors Default"/>
</rules>
</healthMonitoring>

Or to remove all default event log events:

<healthMonitoring>
<rules>
<clear />
</rules>
</healthMonitoring>

-Brock
http://staff.develop.com/ballen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top