Log exceptions and errors

Created by: wasabideveloper

https://docs.djangoproject.com/en/1.8/topics/logging/#using-logging

Log exceptions

try:
    # coode in here
except Exception as exception:
    # python will log the stack trace automatically on call of exception()
    # Only use inside try-except
    logging.exception("XYZ is bad and it failed because....")

http://www.alexconrad.org/2013/02/loggingexception.html