简体   繁体   中英

How does logging.exception gets hold of the exception?

Given the following code, could some python experts tell me how does logging.exception gets reference to the exception to print it out?

>>> try:
...     1/0
... except:
...     logging.exception("message")
... 
ERROR:root:message
Traceback (most recent call last):
  File "<console>", line 2, in <module>
ZeroDivisionError: integer division or modulo by zero

I am assuming it's going through the traceback to get that exception message, but would be good to hear from the experts.

The logging module got the exception via sys.exc_info() . You could take a look at the source code in logging module

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM