Change oidcScopeMissing from WARN to DEBUG (#27439)

Closes #27391

Signed-off-by: rmartinc <rmartinc@redhat.com>
This commit is contained in:
Ricardo Martin 2024-03-08 11:50:21 +01:00 committed by GitHub
parent 84cf306833
commit 299118c45a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -401,7 +401,7 @@ public interface ServicesLogger extends BasicLogger {
@Message(id=90, value="Failed to close ProviderSession")
void failedToCloseProviderSession(@Cause Throwable t);
@LogMessage(level = WARN)
@LogMessage(level = DEBUG)
@Message(id=91, value="Request is missing scope 'openid' so it's not treated as OIDC, but just pure OAuth2 request.")
@Once
void oidcScopeMissing();