如果未捕获某些异常,如何记录后台 python 脚本的输出

发布于 2024-12-12 06:47:32 字数 118 浏览 0 评论 0原文

我有一个在后台运行的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最笨的告白 2024-12-19 06:47:32

通常的技术是在最高级别的调用(主函数)中使用 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.

画▽骨i 2024-12-19 06:47:32

您可以将 sys.stdoutsys.stderr 重新分配给文件句柄。如果遇到未捕获的异常,它们将在 python 退出后可用。像这样的事情:

import sys

sys.stdout = open('myOut.txt', 'w')
sys.stderr = open('myErr.txt', 'w')

You can reassign sys.stdout and sys.stderr to file handles. They'll be available after your python exits if an uncaught exception is encountered. Something like this:

import sys

sys.stdout = open('myOut.txt', 'w')
sys.stderr = open('myErr.txt', 'w')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文