如果未捕获某些异常,如何记录后台 python 脚本的输出
我有一个在后台运行的 python 脚本,我想将所有异常和输出记录到日志文件中。
我知道使用日志记录模块和 try.. catch.. 来记录异常,但是如果我错过了一些异常怎么办,有没有办法也记录这些异常?
I have a python script running in background, and I want to log all the exception and output to a log file.
I know to use logging module and try.. catch..
to log exception, but what if I missed some, is there any way to log these exceptions too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常的技术是在最高级别的调用(主函数)中使用 try/ except Exception。这几乎可以保证您不会“错过一些”。 Exception 匹配非退出异常,因此它正在广泛撒网。
The usual technique is to use a try/except Exception at the highest level call (the main function). This pretty much assures that you will not have "missed some". Exception matches non-exiting exceptions, so it is casting a broad net.
您可以将
sys.stdout
和sys.stderr
重新分配给文件句柄。如果遇到未捕获的异常,它们将在 python 退出后可用。像这样的事情:You can reassign
sys.stdout
andsys.stderr
to file handles. They'll be available after your python exits if an uncaught exception is encountered. Something like this: