Skip to content

Commit

Permalink
removed not needed log message placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Feb 19, 2024
1 parent 36edc1e commit 9f2dae0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public String getPrivateKeyId()
}
catch (InterruptedException | ExecutionException | TimeoutException e)
{
logger.debug("Unable to retrieve keys from {}: {} - {}", jwksUri, e);
logger.debug("Unable to retrieve keys from {}", jwksUri, e);
logger.warn("Unable to retrieve keys from {}: {} - {}", jwksUri, e.getClass().getName(), e.getMessage());

throw new RuntimeException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void execute() throws Exception
}
catch (Exception e)
{
logger.debug("Initial data migration job '{}' failed with error: {}", job.getClass().getName(), e);
logger.debug("Initial data migration job '{}' failed with error", job.getClass().getName(), e);
logger.warn("Initial data migration job '{}' failed with error: {} - {}", job.getClass().getName(),
e.getClass().getName(), e.getMessage());
throw new RuntimeException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,7 @@ private void send(SessionIdAndRemoteAsync sessionAndRemote, String text)
}
catch (Exception e)
{
logger.debug("Error while sending event to remote with session id {}: {} - {}", sessionAndRemote.sessionId,
e);
logger.debug("Error while sending event to remote with session id {}", sessionAndRemote.sessionId, e);
logger.warn("Error while sending event to remote with session id {}: {} - {}", sessionAndRemote.sessionId,
e.getClass().getName(), e.getMessage());
}
Expand Down

0 comments on commit 9f2dae0

Please sign in to comment.