vote up 0 vote down star

We're using Elmah in an asp.net 2.0 web app. Is there a way to disable the default Memory Log provider? In other words, we're logging to SQL Server and because of this we want to completely eliminate the MemoryErrorLog provider that is true by default.

Thanks,

Jason

flag
Why do you think Elmah is logging to memory even without corresponding line in its config? – Alexander Prokofyev Sep 23 at 10:55

1 Answer

vote up 0 vote down

You need to remove this line from your web.config:

<errorLog type="Elmah.MemoryErrorLog, Elmah" size="50" />
link|flag
That line is not present in my web.config. I've setup <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="elmah" /> but the Elmah is still logging to memory IN ADDITION to the SQL db. – Jasolution Sep 3 at 15:34

Your Answer

Get an OpenID
or

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