在Python中使用curses进行日志记录
我正在与日志记录模块一起使用诅咒,并且在启动诅咒时遇到日志记录问题。
日志记录正在工作,并将一些文本打印到控制台(取决于级别),直到调用curses.initscr() 。
关于如何修复它有什么想法吗?
I am using curses alongside the logging module and I'm having a problem with logging when curses is started.
Logging is working and prints some text to console (depending on the level) until curses.initscr()
is called.
Any idea on how to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦curses被初始化,你应该通过它执行所有输出 - 否则它会看起来很愚蠢(正如你所看到的)。
您不能只使用 print/sys.(stdout|stderr).write,因为它会干扰 ncurses 输出。
最好的解决方案是,制作一个 ncurses pad 用于日志记录,将所有日志消息重定向到它。您可以自定义日志处理程序来执行此操作(请查看 logging.handlers以获得一些灵感)。
Once curses is initialized, you should perform all output through it - otherwise it'll look goofy (as you're seeing).
You can't just use print/sys.(stdout|stderr).write, as it'll interfere with ncurses output.
Best solution would be, make an ncurses pad to use for logging, redirect all log messages to it. You can customize your logging handler to do this (take a look at logging.handlers for some inspiration).