Logging Exception In Python With Stack Trace

Jan 16, 2018
logging.exception

Use logging.exception

import loggingtry:    1/0except Exception:    logging.exception("Test Exception Logging")

If you don't want to log a message.

try:    1/0except Exception as e:    logging.exception(e)

If you want to log at other level besides ERROR.

try:    1/0except Exception as e:    logging.info(e, exec_info=True)

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.