Revert "gh-13136 fixed log level related bug"

This reverts commit 1e093db1b6.
This commit is contained in:
Josh Cummings 2023-05-08 15:23:17 -06:00
parent 1e093db1b6
commit b4083f1b9e
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
2 changed files with 2 additions and 2 deletions

View File

@ -507,7 +507,7 @@ public final class OpenSamlAuthenticationProvider implements AuthenticationProvi
if (result.hasErrors()) {
Collection<Saml2Error> errors = result.getErrors();
if (logger.isDebugEnabled()) {
if (logger.isTraceEnabled()) {
logger.debug("Found " + errors.size() + " validation errors in SAML response [" + response.getID()
+ "]: " + errors);
}

View File

@ -559,7 +559,7 @@ public final class OpenSaml4AuthenticationProvider implements AuthenticationProv
if (result.hasErrors()) {
Collection<Saml2Error> errors = result.getErrors();
if (this.logger.isDebugEnabled()) {
if (this.logger.isTraceEnabled()) {
this.logger.debug("Found " + errors.size() + " validation errors in SAML response [" + response.getID()
+ "]: " + errors);
}