当我尝试配置 Python Tornado Web 服务器以登录到文件时,我总是收到 AttributeError: 'NoneType' object has no attribute 'set' 异常。

在我用来执行此操作的代码下方:
tornado.options.options["log_file_prefix"].set("local.log")
我试图通过互联网上的文档和一些示例,但我没有找到任何东西。

我正在使用 tornado 4.2.1 Python 2.7.9

你有什么建议吗?

提前致谢。

最佳答案

使用属性赋值语法:

tornado.options.options.log_file_prefix = "local.log"

关于python-2.7 - Python Tornado中的AttributeError将日志配置为文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33411269/

10-13 04:48