From 987e4b91d6f0307a622f955f2304146f7bbb3adb Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 24 Mar 2015 08:26:14 -0400 Subject: [PATCH] Removed the null handler in Django's default logging config. It's unused since f0f327bb. --- django/utils/log.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/django/utils/log.py b/django/utils/log.py index af72bb04470..93b25c3da89 100644 --- a/django/utils/log.py +++ b/django/utils/log.py @@ -34,9 +34,6 @@ DEFAULT_LOGGING = { 'filters': ['require_debug_true'], 'class': 'logging.StreamHandler', }, - 'null': { - 'class': 'logging.NullHandler', - }, 'mail_admins': { 'level': 'ERROR', 'filters': ['require_debug_false'],