diff options
| author | Neal Todd <neal.todd@torchbox.com> | 2015-11-07 16:07:21 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2015-11-07 16:35:46 +0100 |
| commit | c3a974c81ec9d9b102cc9bd10c23e5579c751df1 (patch) | |
| tree | 4de927c2e073c6046bb8a463191b87683f89dc87 /django/utils/log.py | |
| parent | c3531d2f208c5a039a190ec36a7349f627f13f01 (diff) | |
Amended comment to remove reference to the no longer used NullHandler
Diffstat (limited to 'django/utils/log.py')
| -rw-r--r-- | django/utils/log.py | 3 |
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, |
