ionelmc / django-monkey-team

Django middleware and userscript that displays debug tracebacks on production sites (where you would have DEBUG = False) only to developers.
https://pypi.python.org/pypi/django-monkey-team
BSD 2-Clause "Simplified" License
57 stars 1 forks source link

Enhancement -> List of errors? #5

Open ckcollab opened 11 years ago

ckcollab commented 11 years ago

I know there's Sentry and all that other jazz for tracking errors, but I just want something simple.

Would it be simple to add a list of the previous 100 errors to view on the admin page? So instead of going through the steps of:

I could do

ionelmc commented 11 years ago

When I made this I thought this as a simple way for developers to see debug responses when they do odd stuff on production environments.

There should not be functionality overlap with Sentry or other errors trackers.

You are proably better off just using email notifications. If that doesn't have the detail you want you could implement an error handler that mails a technical_500_response or something similar.