Skip to content

Commit

Permalink
[ELY-2715] Change log level for ELY23013 and ELY23012 to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
daspilker committed Feb 19, 2024
1 parent 2bbdcfc commit 462b0a9
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -18,6 +18,7 @@

package org.wildfly.security.http.oidc;

import static org.jboss.logging.Logger.Level.DEBUG;
import static org.jboss.logging.Logger.Level.ERROR;
import static org.jboss.logging.Logger.Level.WARN;
import static org.jboss.logging.annotations.Message.NONE;
Expand Down Expand Up @@ -87,11 +88,11 @@ interface ElytronMessages extends BasicLogger {
@Message(id = 23011, value = "Refresh token failure")
void refreshTokenFailure(@Cause Throwable cause);

@LogMessage(level = ERROR)
@LogMessage(level = DEBUG)
@Message(id = 23012, value = "Refresh token failure status: %d %s")
void refreshTokenFailureStatus(int status, String error);

@LogMessage(level = ERROR)
@LogMessage(level = DEBUG)
@Message(id = 23013, value = "Failed verification of token: %s")
void failedVerificationOfToken(String error);

Expand Down

0 comments on commit 462b0a9

Please sign in to comment.