VoY
VoY

Reputation: 5699

Is there a better error reporting via e-mail for Django?

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

Answers (1)

Steve Jalim
Steve Jalim

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

Related Questions