summaryrefslogtreecommitdiff
path: root/django/utils/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/log.py')
-rw-r--r--django/utils/log.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/utils/log.py b/django/utils/log.py
index 93b25c3da8..7ccc532a05 100644
--- a/django/utils/log.py
+++ b/django/utils/log.py
@@ -12,8 +12,6 @@ from django.utils.encoding import force_text
from django.utils.module_loading import import_string
from django.views.debug import ExceptionReporter, get_exception_reporter_filter
-getLogger = logging.getLogger
-
# 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).