Want to log python error with debug information? Use logger.exception
will output a stack trace alongside the error message. For example:
1 2 3 4 5 | import logging try: 1/0 except ZeroDivisionError as e: logging.exception("message") |
Output
1 2 3 4 | ERROR:root:message Traceback (most recent call last): File "<stdin>", line 2, in <module> ZeroDivisionError: integer division or modulo by zero |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.