当我尝试配置我的Python Tornado Web Server以登录文件时,我总是得到 AttributeError:'NoneType'对象没有属性'set'异常。
在我用来执行此操作的代码下面:
tornado.options.options["log_file_prefix"].set("local.log")
我试图通过互联网上的文档和一些例子,但我没有找到任何东西。
我正在使用龙卷风4.2.1 与 Python 2.7.9 。
你有什么建议吗?
提前致谢。
答案 0 :(得分:3)
使用属性赋值语法:
tornado.options.options.log_file_prefix = "local.log"