我在远程服务器上使用带有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打开我的项目, 但日志文件没有变化。
请帮助我解决这个问题,我必须如何配置日志记录以获取日志文件中的更改。
非常感谢,
答案 0 :(得分:0)
Django使记录变得更加简单。请查看以下文档:
https://docs.djangoproject.com/en/1.4/topics/logging/
您需要做的就是将一个字典添加到settings.py文件