使用 mod_wsgi 时如何写入 apache 日志文件
我有一个 Django 项目,我一直在使用标准库日志记录模块记录到一个文件。由于多种原因,我想对其进行更改,以便将其写入 Apache 日志文件。我已经看到很多关于如何使用 mod_python 执行此操作的讨论,但没有看到 mod_wsgi。如何对在 mod_wsgi 下运行的项目执行此操作?
I have a Django project where I have been logging to a file using the standard library logging module. For a variety of reasons I would like to change it so that it writes to the Apache log files. I've seen quite a bit of discussion of how to do this with mod_python, but not mod_wsgi. How do I do this for a project running under mod_wsgi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数情况下,我们使用日志记录并写入
sys.stderr
。这似乎写入了 Apache error_log。Mostly, we use logging and write to
sys.stderr
. That seems to write to the Apache error_log.