18 lines
325 B
Python
18 lines
325 B
Python
# Python imports
|
|
import logging
|
|
import traceback
|
|
|
|
# Django imports
|
|
from django.conf import settings
|
|
|
|
|
|
def log_exception(e):
|
|
# Log the error
|
|
logger = logging.getLogger("plane")
|
|
logger.error(e)
|
|
|
|
if settings.DEBUG:
|
|
# Print the traceback if in debug mode
|
|
print(traceback.format_exc())
|
|
|
|
return
|