From f0aff653374a43fb3ffd72eae6c99ca63a2bd4b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Thu, 23 May 2013 19:05:46 +0200 Subject: [PATCH] Changed error level for sentry to DEBUG (from ERROR) --- config/production/local_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/production/local_settings.py b/config/production/local_settings.py index 25c9056..4571aab 100644 --- a/config/production/local_settings.py +++ b/config/production/local_settings.py @@ -56,7 +56,7 @@ LOGGING = { }, 'handlers': { 'sentry': { - 'level': 'ERROR', + 'level': 'DEBUG', 'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler', }, 'console': {