When I have my custom errors disabled, Elmah is taking all exceptions that occur and logging them into my database and emailing me.
However, the second I change my web.config to:
<customErrors mode="RemoteOnly" defaultRedirect="~/Home/Error">
</customErrors>
Elmah stops functioning. It no longer logs exceptions to the database or anything, all I see is my custom error action being executed.
How can I have custom error messages and still have elmah log exceptions? I am currently not doing any other exception intercepting besides Elmah.