X-Git-Url: https://git.openstreetmap.org/osqa.git/blobdiff_plain/4f3e909d9fd1b5e865e52884da25508c8fdb6e85..3223ab3b10da1eac0f6f608a2619ffe53d5a0889:/settings_local.py.dist diff --git a/settings_local.py.dist b/settings_local.py.dist index c50bc33..896a433 100644 --- a/settings_local.py.dist +++ b/settings_local.py.dist @@ -3,14 +3,33 @@ import os.path SITE_SRC_ROOT = os.path.dirname(__file__) LOG_FILENAME = 'django.osqa.log' - -#for logging -import logging -logging.basicConfig( - filename=os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME), - level=logging.ERROR, - format='%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s', -) +LOGGING = { + 'version': 1, + 'formatters': { + 'default': { + 'format': '%(pathname)s TIME: %(asctime)s MSG: %(filename)s:%(funcName)s:%(lineno)d %(message)s', + } + }, + 'handlers': { + 'file': { + 'level': 'DEBUG', + 'class': 'logging.FileHandler', + 'formatter': 'default', + 'filename': os.path.join(SITE_SRC_ROOT, 'log', LOG_FILENAME), + }, + }, + 'loggers' : { + # ensure that all log entries are propagated to root + 'django': { 'propagate': True }, + 'django.request': { 'propagate': True }, + 'django.security': { 'propagate': True }, + 'py.warnings': { 'propagate': True }, + }, + 'root': { + 'handlers': ['file'], + 'level': 'DEBUG', + }, +} #ADMINS and MANAGERS ADMINS = () @@ -22,7 +41,7 @@ DEBUG_TOOLBAR_CONFIG = { } TEMPLATE_DEBUG = DEBUG INTERNAL_IPS = ('127.0.0.1',) - +ALLOWED_HOSTS = ('yourhostname.com',) DATABASES = { 'default': { @@ -32,6 +51,7 @@ DATABASES = { 'PASSWORD': '', 'HOST': '', 'PORT': '', + 'CONN_MAX_AGE': 600, } }