Removed getLogger alias in django.utils.log.

This commit is contained in:
Tim Graham 2015-03-24 08:33:56 -04:00
parent 987e4b91d6
commit 13bc311cdb
3 changed files with 4 additions and 6 deletions

View File

@ -1,12 +1,12 @@
import hashlib import hashlib
import logging
from django.db.backends.utils import truncate_name from django.db.backends.utils import truncate_name
from django.db.transaction import atomic from django.db.transaction import atomic
from django.utils import six from django.utils import six
from django.utils.encoding import force_bytes from django.utils.encoding import force_bytes
from django.utils.log import getLogger
logger = getLogger('django.db.backends.schema') logger = logging.getLogger('django.db.backends.schema')
def _related_non_m2m_objects(opts): def _related_non_m2m_objects(opts):

View File

@ -12,8 +12,6 @@ from django.utils.encoding import force_text
from django.utils.module_loading import import_string from django.utils.module_loading import import_string
from django.views.debug import ExceptionReporter, get_exception_reporter_filter 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 # 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 # 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 by mean of the NullHandler (DEBUG=False).

View File

@ -2,6 +2,7 @@ from __future__ import unicode_literals
import datetime import datetime
import decimal import decimal
import logging
import sys import sys
from django.core.exceptions import PermissionDenied, SuspiciousOperation from django.core.exceptions import PermissionDenied, SuspiciousOperation
@ -9,7 +10,6 @@ from django.core.urlresolvers import get_resolver
from django.http import Http404, HttpResponse, JsonResponse from django.http import Http404, HttpResponse, JsonResponse
from django.shortcuts import render, render_to_response from django.shortcuts import render, render_to_response
from django.template import TemplateDoesNotExist from django.template import TemplateDoesNotExist
from django.utils.log import getLogger
from django.views.debug import ( from django.views.debug import (
SafeExceptionReporterFilter, technical_500_response, SafeExceptionReporterFilter, technical_500_response,
) )
@ -102,7 +102,7 @@ def render_no_template(request):
def send_log(request, exc_info): def send_log(request, exc_info):
logger = getLogger('django.request') logger = logging.getLogger('django.request')
# The default logging config has a logging filter to ensure admin emails are # The default logging config has a logging filter to ensure admin emails are
# only sent with DEBUG=False, but since someone might choose to remove that # only sent with DEBUG=False, but since someone might choose to remove that
# filter, we still want to be able to test the behavior of error emails # filter, we still want to be able to test the behavior of error emails