summaryrefslogtreecommitdiff
path: root/conf/dev_settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf/dev_settings.py')
-rw-r--r--conf/dev_settings.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/conf/dev_settings.py b/conf/dev_settings.py
index d5cefb7..1198968 100644
--- a/conf/dev_settings.py
+++ b/conf/dev_settings.py
@@ -1,6 +1,6 @@
import os
-from settings import SITE_ROOT, INSTALLED_APPS, MIDDLEWARE_CLASSES
+from settings import INSTALLED_APPS, LOGGING, MIDDLEWARE_CLASSES, SITE_ROOT
DEBUG = True
@@ -28,3 +28,10 @@ INTERNAL_IPS = ('127.0.0.1')
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': False,
}
+
+LOGGING['loggers'].update({
+ '': {
+ 'handlers': ['debuglog'],
+ 'level': 'DEBUG'
+ }
+})