diff --git a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/CodeAuthenticationMechanism.java b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/CodeAuthenticationMechanism.java index ce536c0f6dd1e..2a49897af3e71 100644 --- a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/CodeAuthenticationMechanism.java +++ b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/runtime/CodeAuthenticationMechanism.java @@ -193,8 +193,7 @@ private Uni performCodeFlow(IdentityProviderManager identityPr LOG.debug("State parameter can not be empty or multi-valued"); return Uni.createFrom().failure(new AuthenticationCompletionException()); } else if (!stateCookie.getValue().startsWith(values.get(0))) { - LOG.debugf("State cookie value '%s' does not match the state query parameter value '%s'", - stateCookie.getValue(), values.get(0)); + LOG.debug("State cookie value does not match the state query parameter value"); return Uni.createFrom().failure(new AuthenticationCompletionException()); } else if (context.queryParam("pathChecked").isEmpty()) { // This is an original redirect from IDP, check if the request path needs to be updated