summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/saml2/response.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/saml2/response.py b/src/saml2/response.py
index f2e2f53e..bcf3285f 100644
--- a/src/saml2/response.py
+++ b/src/saml2/response.py
@@ -526,8 +526,6 @@ class AuthnResponse(StatusResponse):
try:
if not self.check_subject_confirmation_in_response_to(
self.in_response_to):
- logger.exception(
- "Unsolicited response %s" % self.in_response_to)
raise UnsolicitedResponse(
"Unsolicited response: %s" % self.in_response_to)
except AttributeError:
@@ -536,8 +534,6 @@ class AuthnResponse(StatusResponse):
# Should check that I haven't seen this before
pass
else:
- logger.exception(
- "Unsolicited response %s" % self.in_response_to)
raise UnsolicitedResponse(
"Unsolicited response: %s" % self.in_response_to)