From ead99a0ba9d26d5b9950242a6dd6084325be895c Mon Sep 17 00:00:00 2001 From: Marco Monaco Date: Mon, 29 Aug 2011 10:32:52 +0200 Subject: [PATCH] removed logging --- social_auth/views.py | 4 ---- 1 file changed, 4 deletions(-) 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) -- 2.39.5