diff options
| author | Tim Graham <timograham@gmail.com> | 2015-03-24 08:26:14 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-24 08:26:14 -0400 |
| commit | 987e4b91d6f0307a622f955f2304146f7bbb3adb (patch) | |
| tree | 4a31526167d542d2084077f2454a0d2ca9a6683b | |
| parent | 01ec127baec38b7f8281e6eca9def40f22c9e5ad (diff) | |
Removed the null handler in Django's default logging config.
It's unused since f0f327bb.
| -rw-r--r-- | django/utils/log.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/utils/log.py b/django/utils/log.py index af72bb0447..93b25c3da8 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'], |
