Reputation: 641
I want to log source error in error page of my asp.net mvc application in the image.
Elmah just log stack trace.
Is there any config that i should set? How?
Upvotes: 1
Views: 133
Reputation: 5259
ELMAH doesn't log this, since this is an UI feature of the yellow screen of death. The information in Source Error, is basically the same as in the stack trace. As what I can see, ErrorFormatter is used to generate this.
Upvotes: 1