Is there a way to get Django to email me error reports even though I have debug set to True?

I didn't see anything in the docs.

Edit:

I'm on Django 1.2 if it matters. No, this isn't a production system.

link|improve this question

1  
There is no option for this as far as I know. What you could do perhaps is write your own middleware ("See also" note under the linked paragraph is talking about this) – rebus Jun 24 '11 at 12:27
feedback

1 Answer

up vote 2 down vote accepted

You might want to look at django-sentry. It's really designed for use in production, but it has TESTING setting to make it work when DEBUG=True as well. It might actually send out emails at that point, too -- haven't tested that myself, but it'll at least keep a log of errors that you can view at any time from any web-enabled device.

Besides, when you do eventually go to production, it'll be a life-saver.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.