1
0
mirror of synced 2026-08-04 09:17:02 +00:00

Update OpenSaml4AuthenticationProvider.java

Fix level of log message.
This commit is contained in:
James Howe
2024-06-19 10:28:56 +01:00
committed by Josh Cummings
parent bef63469dd
commit 902aff451f
@@ -615,7 +615,7 @@ public final class OpenSaml4AuthenticationProvider implements AuthenticationProv
if (result.hasErrors()) { if (result.hasErrors()) {
Collection<Saml2Error> errors = result.getErrors(); Collection<Saml2Error> errors = result.getErrors();
if (this.logger.isTraceEnabled()) { if (this.logger.isTraceEnabled()) {
this.logger.debug("Found " + errors.size() + " validation errors in SAML response [" + response.getID() this.logger.trace("Found " + errors.size() + " validation errors in SAML response [" + response.getID()
+ "]: " + errors); + "]: " + errors);
} }
else if (this.logger.isDebugEnabled()) { else if (this.logger.isDebugEnabled()) {