From 4a113158eca03ca53c59e56fa206b2ed7153a358 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Wed, 20 Jul 2016 10:08:52 +0200 Subject: [PATCH] [settings] Enable more default verbosity --- beat/web/settings/settings.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/beat/web/settings/settings.py b/beat/web/settings/settings.py index 2583579d6..b72a6a1d7 100644 --- a/beat/web/settings/settings.py +++ b/beat/web/settings/settings.py @@ -83,7 +83,7 @@ LOGGING = { 'class': 'logging.NullHandler', }, 'console': { - 'level': 'DEBUG', + 'level': 'INFO', 'class': 'logging.StreamHandler', 'formatter': 'simple', }, @@ -93,12 +93,16 @@ LOGGING = { } }, 'loggers': { - 'beat.web': { - 'handlers': ['console', 'mail_admins'], + '': { + 'handlers': ['discard'], + 'level': 'DEBUG', }, 'beat.core': { 'handlers': ['console'], }, + 'beat.web': { + 'handlers': ['console', 'mail_admins'], + }, 'beat.web.attestations.management.commands': { 'handlers': ['console'], 'propagate': False, #don't e-mail those! -- GitLab