We are running custom management commands periodically on the server.

Is there any way to get something like error reporting via email working for the command?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You could use django logging handler AdminEmailHandler:

https://docs.djangoproject.com/en/dev/topics/logging/#django.utils.log.AdminEmailHandler

As the docs say:

This handler sends an email to the site admins for each log message it receives.

So you could use this to log an error on any exception raised in the management command, and the exception would be automatically send to the admins

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.