Eclipse 上的 Python 日志记录模块
调试时我应该在哪里查看 Eclipse 上的日志输出?跑步时?
Where should I see the logging output on Eclipse while debugging ? and when running ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您如何配置日志系统。如果只使用 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 theconsole
eclipse view.If you configured only file handler in the logging configuration, you'll have to tail the log files ;)
这是一个对我有用的例子:
Here an example that worked for me: