From a3a105cb2ce46dc85248e4eadf5da2cbc829db9f Mon Sep 17 00:00:00 2001 From: asadiqbal Date: Mon, 11 Sep 2017 14:56:15 +0500 Subject: [PATCH] ENT-604 Fix SAML Error on UI --- common/djangoapps/student/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/student/views.py b/common/djangoapps/student/views.py index 83f6c71b46..994b70cf3e 100644 --- a/common/djangoapps/student/views.py +++ b/common/djangoapps/student/views.py @@ -1368,7 +1368,7 @@ def login_user(request, error=""): # pylint: disable=too-many-statements,unused user = pipeline.get_authenticated_user(requested_provider, username, third_party_uid) third_party_auth_successful = True except User.DoesNotExist: - AUDIT_LOG.warning( + AUDIT_LOG.info( u"Login failed - user with username {username} has no social auth " "with backend_name {backend_name}".format( username=username, backend_name=backend_name)