我目前正在使用Django 1.6.2开发网站,而且我无法正确进行日志记录配置。
我已经设置了记录'在设置文件上,但它似乎被忽略。这是我的设置文件:
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "duummy"
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'channels'
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'my_app.urls'
WSGI_APPLICATION = 'my_app.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'db.sqlite3',
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Brazil/East'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
# Logging
#
LOGGING_DIR = os.path.join(BASE_DIR, 'logs/')
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(asctime)s - %(module)s -> %(levelname)s - %(message)s'
}
},
'filters': {
'require_debug_true': {
'()': 'django.utils.log.RequireDebugTrue',
}
},
'handlers': {
'console':{
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'verbose'
},
'debug_log_handler': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': os.path.join(LOGGING_DIR, 'debug_log'),
'formatter':'verbose'
},
'db_log_handler': {
'level': 'ERROR',
'class': 'logging.handlers.TimedRotatingFileHandler',
'filename': os.path.join(LOGGING_DIR, 'db_log'),
'when':'D',
'interval':1,
'formatter':'simple'
},
'request_log_handler': {
'level': 'ERROR',
'class': 'logging.handlers.TimedRotatingFileHandler',
'filename': os.path.join(LOGGING_DIR, 'request_log'),
'when':'D',
'interval':1,
'formatter':'simple'
},
'site_log_handler': {
'level': 'ERROR',
'class': 'logging.handlers.TimedRotatingFileHandler',
'filename': os.path.join(LOGGING_DIR, 'log'),
'when':'D',
'interval':1,
'formatter':'simple'
}
},
'loggers': {
'django': {
'handlers': ['console', 'debug_log_handler'],
'level': 'DEBUG',
'propagate': True,
'filters': ['require_debug_true']
},
'django.db.backends': {
'handlers': ['db_log_handler'],
'level': 'ERROR',
'propagate': True
},
'django.request': {
'handlers': ['request_log_handler'],
'level': 'ERROR',
'propagate': True
},
'test': {
'handlers': ['site_log_handler'],
'level': 'ERROR',
'propagate': True
},
}
}
当我运行服务器时,控制台正在输出如下信息:
[13/Mar/2014 01:25:12] "GET / HTTP/1.1" 404 2015
它没有打印调试信息,也没有以我为控制台指定的格式打印。
我错过了什么吗?
谢谢!
答案 0 :(得分:0)
Django仅记录到四个记录器,记录为here:django
,django.request
,django.db.backends
和django.security
。第一个没有直接登录,你已经将接下来的两个级别设置为ERROR
- 这意味着他们不会记录任何DEBUG
个消息 - 而且最后一个只记录如果发生安全问题。
尝试将test
记录器的级别设置为DEBUG
,将console_handler
添加到其handlers
列表,并从您的某个视图中将一些DEBUG
消息记录到其中 - 你应该看到一些输出。
答案 1 :(得分:0)
当你运行服务器,似乎做了一个' GET /'时,Django会将请求记录到' django.request'记录仪。由于您将LOGGING.disable_existing_loggers设置为True,因此必须使用您配置的django.request设置。
在LOGGING.loggers中,您将django.request的级别设置为' ERROR'。但是,根据the documentation,4XX仅作为警告记录。只有5XX记录为ERROR。