我已经使用 nginx 设置了 django 服务器,并且在某些页面中出现 403 错误。
我在哪里可以找到 django 日志?我在哪里可以看到详细的错误?
日志在您的settings.py
文件中设置。一个新的默认项目如下所示:
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}
默认情况下,这些不会创建日志文件。如果你想要这些,你需要在filename
你的handlers
'applogfile': {
'level':'DEBUG',
'class':'logging.handlers.RotatingFileHandler',
'filename': os.path.join(DJANGO_ROOT, 'APPNAME.log'),
'maxBytes': 1024*1024*15, # 15MB
'backupCount': 10,
},
这将设置一个可以获取 15 MB 大小并保留 10 个历史版本的旋转日志。
在loggers
上面的部分中,您需要applogfile
为handlers
您的应用程序添加
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
'APPNAME': {
'handlers': ['applogfile',],
'level': 'DEBUG',
},
}
这个例子将把你的日志放在你的 Django 根目录中一个名为APPNAME.log
添加到您的settings.py
:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': 'debug.log',
},
},
'loggers': {
'django': {
'handlers': ['file'],
'level': 'DEBUG',
'propagate': True,
},
},
}
它将debug.log
在您的根目录中创建一个名为的文件。
https://docs.djangoproject.com/en/1.10/topics/logging/
设置https://docs.djangoproject.com/en/dev/topics/logging/然后这些错误将在您指向它们的位置回显。默认情况下,它们往往会在杂草中消失,所以我总是先从良好的日志记录设置开始。
这是一个非常好的基本设置示例: https ://ian.pizza/b/2013/04/16/getting-started-with-django-logging-in-5-minutes/