Reputation: 5699
Quite often the error reports coming via e-mail are less than useful in tracking bugs. Most often this is due to missing session data and username of the user triggering the error. Is there a project or a library I could use to get more complete error reports?
Upvotes: 2
Views: 196
Reputation: 12195
You could write your own exception middleware, as suggested here (bottom of page).
There is a base snippets here and an example of how to extract the traceback here
Upvotes: 3