0

I'm running my live Django server on Digital Ocean so have DEBUG=FALSE. Is there any way I can see DEBUG errors? Some function which emails me the traceback or something?

Zorgan
  • 8,227
  • 23
  • 106
  • 207
  • Found this with a quick search: https://stackoverflow.com/questions/19289925 also check this : https://docs.djangoproject.com/en/dev/topics/logging/ – Navid Zarepak Feb 13 '18 at 20:58

1 Answers1

0

Use python logging module import logging and see django logging topic

see python package called request_id from here https://pypi.python.org/pypi/django-request-id

A.Raouf
  • 2,171
  • 1
  • 24
  • 36