This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Print full exceptions as they occur in logging
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: vinay.sajip Nosy List: hoffman, vinay.sajip
Priority: normal Keywords:

Created on 2006-09-06 12:57 by hoffman, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg54893 - (view) Author: Michael Hoffman (hoffman) Date: 2006-09-06 12:57
Sometimes exceptions occur when using logging that are
caused by the user code. However, logging catches these
exceptions and does not give a clue as to where the
error occurred. Printing full exceptions as suggested
in RFE http://www.python.org/sf/1553375 would be a big
help.
msg54894 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2007-01-15 16:48
Logging now catches very few exceptions: if logging.raiseExceptions is set to 1 (the default), exceptions are generally raised. There have been recent changes in logging to reduce the number of bare except: clauses, so I am closing this item as I believe it has been adequately addressed.
History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 43949
2006-09-06 12:57:16hoffmancreate