我可以从 python cgi 写入 Lighttpd 日志文件吗?
我有一个 python cgi 脚本(只是 python,我没有使用任何框架)。它使用 openSUSE 上的 Lighttpd 提供服务。我想重定向我的日志记录语句(如logging.info等)以包含到Lighttpd日志文件中。如果无法做到这一点,我如何创建自己的日志文件?
I have a python cgi script (just python, I didn't use any framework). It's served using Lighttpd on openSUSE. I would like to redirect my logging statements (like logging.info and so on) to be included to Lighttpd log file. If this can't be done, how can I create my own log file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您记录到lighttpd日志文件的目标看起来不太可能:http://redmine.lighttpd。 net/boards/2/topics/16
看来您确实可以使用 FastCGI 接口来提供写入错误消息的位置。
这是一个关于使用 python 记录器工具写入您自己的日志文件的简单教程: http://docs .python.org/library/logging.html
Your goal of logging to the lighttpd log file looks unlikely: http://redmine.lighttpd.net/boards/2/topics/16
It does seem that you could use the FastCGI interface to provide a place to write error messages.
Here's a simple tutorial on using python's logger facility to write to your own log files: http://docs.python.org/library/logging.html