How can I log my Python exceptions?
try:
do_something()
except:
# How can I log my exception here, complete with its traceback?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
logging.exceptionfrom within theexcept:handler/block to log the current exception along with the trace information, prepended with a message.Now looking at the log file,
/tmp/logging_example.out: