summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Todd <neal.todd@torchbox.com>2015-11-07 16:07:21 +0100
committerClaude Paroz <claude@2xlibre.net>2015-11-07 16:36:40 +0100
commit15377fceaa4aa28d15af22a63aebc35cb7fbbf87 (patch)
treef1e6b203891864644593cdbbed4e8b67d44976cf
parent194f893f02c2a597e5e59f171a281cdff470836f (diff)
[1.9.x] Amended comment to remove reference to the no longer used NullHandler
-rw-r--r--django/utils/log.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/utils/log.py b/django/utils/log.py
index 0c2b872ee5..6fb487b7fc 100644
--- a/django/utils/log.py
+++ b/django/utils/log.py
@@ -15,7 +15,8 @@ from django.views.debug import ExceptionReporter
# Default logging for Django. This sends an email to the site admins on every
# HTTP 500 error. Depending on DEBUG, all other log records are either sent to
-# the console (DEBUG=True) or discarded by mean of the NullHandler (DEBUG=False).
+# the console (DEBUG=True) or discarded (DEBUG=False) by means of the
+# require_debug_true filter.
DEFAULT_LOGGING = {
'version': 1,
'disable_existing_loggers': False,