I started to use ELMAH to log my errors in my ASP.NET 4.0 application. Everything was working correctly, meaning I was logging my errors in the database. Then I wanted to pass the ErrorID from ELMAH_Error table to the custom error page. I had a hardtime trying to make the function ErrorLog_Logged to fire from the global.asax file. I finally got ErrorLog_Logged event to fire after I removed from the
<elmah> tag <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="connNameCommon" />.
My question is how do I log the errors through the database and also have the ErrorLog_Logged to fire from the global.asax file?
Here is my web.config file. Not quite sure why my whole web.config file does not show up. Sorry in advance, if you click on edit you can see it all.
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="telerik.web.ui">
<section name="radScheduler" type="Telerik.Web.UI.RadSchedulerConfigurationSection, Telerik.Web.UI" allowDefinition="MachineToApplication" requirePermission="false"/>
<section name="radCompression" type="Telerik.Web.UI.RadCompressionConfigurationSection, Telerik.Web.UI, PublicKeyToken=121fae78165ba3d4" allowDefinition="MachineToApplication" requirePermission="false"/>
</sectionGroup>
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/>
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah"/>
</sectionGroup>