views:

34

answers:

1

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?

+2  A: 

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

stevejalim