From: Marco Monaco Date: Mon, 29 Aug 2011 08:32:52 +0000 (+0200) Subject: removed logging X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ead99a0ba9d26d5b9950242a6dd6084325be895c;p=django-social-auth.git removed logging --- diff --git a/social_auth/views.py b/social_auth/views.py index a35c0a4..64a82e7 100644 --- a/social_auth/views.py +++ b/social_auth/views.py @@ -5,7 +5,6 @@ Notes: on third party providers that (if using POST) won't be sending crfs token back. """ -import logging from functools import wraps from django.conf import settings @@ -20,9 +19,6 @@ from django.views.decorators.csrf import csrf_exempt from social_auth.backends import get_backend from social_auth.utils import sanitize_redirect -logger = logging.getLogger(__name__) -logger.setLevel(logging.ERROR) - def _setting(name, default=''): return getattr(settings, name, default)