我在远程服务器上使用带有 mod_python 的 Django,需要添加一些日志记录。我尝试添加一些测试日志,在 settings.py 中添加以下代码:
import logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)s %(message)s', filename='/home/voip_maker/django.log', filemode='a+')
logging.debug("hello world!")
logging.info("this is some interesting info!")
logging.error("this is an error!")
然后我重新启动 apache 并尝试通过 web 打开我的项目,但日志文件没有变化。
你能帮我解决这个问题吗,我必须如何配置日志记录以获取日志文件的更改。
非常感谢,