我正在尝试让所有日志消息转到标准的 apache 错误日志,但我无法让它工作。如果我写入文件很好,但是 apache 日志完全不起作用。有什么建议吗?这是我的相关配置:
settings.py(片段)
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'formatters': {
'standard': {
'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s',
}
},
'handlers': {
'development': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'standard',
},
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
},
},
'loggers': {
'':{
'handlers': ['development'],
'level': 'DEBUG',
'propagate': True
},
'django.db.backends': {
'handlers': ['development'],
'level': 'DEBUG',
'propagate': False,
},
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
}
}
}
虚拟主机配置
<VirtualHost *:80>
SetEnv DJANGO_DEBUG True
ServerName virtualimpact.userhome.test-env.net
LogLevel debug
ErrorLog "/home/developer/logs/developer-machine_error.log"
CustomLog "/home/developer/logs/developer-machine_com_access.log" combined
Alias /static/ /home/developer/htdocs/path/to/htdocs/static/
<Directory /home/developer/htdocs/path/to/htdocs/static>
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / /home/developer/htdocs/path/to/mod_wsgi/django.wsgi
</VirtualHost>
django.wsgi
import os, sys, site
workspace = os.path.abspath('%s/..' % os.path.dirname(__file__))
activate_this = os.path.abspath('%s/virtpy/bin/activate_this.py' % workspace)
execfile(activate_this, dict(__file__=activate_this))
sys.path.append(workspace)
sys.path.append('%s/htdocs' % workspace)
os.environ['DJANGO_SETTINGS_MODULE'] = 'htdocs.settings'
os.environ['PYTHON_EGG_CACHE'] = '%s/mod_wsgi/egg-cache' % workspace
import django.core.handlers.wsgi
_application = django.core.handlers.wsgi.WSGIHandler()
def application(environ, start_response):
os.environ['DJANGO_DEBUG'] = environ.get('DJANGO_DEBUG', 'False')
return _application(environ, start_response)
views.py(片段)
import logging
logger = logging.getLogger('')
...
class AbstractsListView(BaseListView):
def get_context_data(self, **kwargs):
# none of the below calls write to the error log
logger.debug('debug it')
logger.info('info it')
import sys
sys.stderr.write('asdfasdf')
...
如果您需要更多信息,请告诉我,这件事一直困扰着我一段时间,我对此束手无策。
提前致谢。
编辑:另外,我正在使用 Python 2.6.6 和 Django==1.4.3
编辑:它正在记录,但是到错误的文件!
所以我不知道为什么我以前没有检查过,但事实证明我写到 stdout(或 stderr)的任何内容都会进入 /var/log/httpd/ 中的日志,而不是我专门配置的日志对于这个虚拟主机。我想知道这是否比 Django 更像是一个 mod_wsgi 问题,但我不能确定。我的 mod_wsgi 和 vhost.conf 文件是否正确?
谢谢,