Weird behavior of an ASP.NET MVC application - track of errors
- by Alex
Before migrating from ASP.NET WebForms I had a very good way to monitor all my application errors in the Events Log (Administrative Tools).
But now after moving to asp.net MVC, all I get is the same mistake occurring every minute (something about Site Master). I know it's not right, because there are other mistakes, but they are not displayed. I purposefully put in division by zero operation, and it didn't track it.
I had to implement the OnException method of a controller, and send e-mails with error details which is very inconvenient.
How can I solve this problem?