Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>


share|improve this question
If I log to file ErrorLog_Logged fires so if I have <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" /> instead of <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="connNameCommon" /> Any ideas why it does not fire when I try to log to the database?? – Tesh Jul 10 '12 at 23:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.