Eclipse 上的 Python 日志记录模块

发布于 2024-11-08 04:54:23 字数 38 浏览 0 评论 0原文

调试时我应该在哪里查看 Eclipse 上的日志输出?跑步时?

Where should I see the logging output on Eclipse while debugging ? and when running ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

谁把谁当真 2024-11-15 04:54:23

这取决于您如何配置日志系统。如果只使用 print 语句,它应该显示在 eclipse 的 console 视图中。

如果您使用日志记录并且配置了控制台处理程序,它也应该显示在console Eclipse 视图中。
如果您在日志记录配置中仅配置了文件处理程序,则必须跟踪日志文件;)

It will depends on how you configure your logging system. If you use only print statement, it should be shown in the console view of eclipse.

If you use logging and you configured a Console handler it should also be displayed in the console eclipse view.
If you configured only file handler in the logging configuration, you'll have to tail the log files ;)

北音执念 2024-11-15 04:54:23

这是一个对我有用的例子:

# LOG
log = logging.getLogger("appname")
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
fmt = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(fmt)
log.addHandler(ch)
log.debug("something happened") # Will print on console '2013-01-26 12:58:28,974 - appname - DEBUG - something happened'

Here an example that worked for me:

# LOG
log = logging.getLogger("appname")
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
fmt = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(fmt)
log.addHandler(ch)
log.debug("something happened") # Will print on console '2013-01-26 12:58:28,974 - appname - DEBUG - something happened'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文