Skip to content

Commit

Permalink
message improvement
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Jareš <Pavel.Jares@broadcom.com>
  • Loading branch information
pj892031 committed Aug 8, 2024
1 parent 0918c1b commit 4eecfee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public boolean isValid(String token) {
int responseCode = httpResponse.getStatusLine().getStatusCode();
return HttpStatus.valueOf(responseCode).is2xxSuccessful();
} catch (IOException e) {
log.error("error validating token using userInfo URI {} message: {}", endpointUrl, e.getMessage());
log.error("An error occurred during validation of OIDC token using userInfo URI {}: {}", endpointUrl, e.getMessage());
return false;
}
}
Expand Down

0 comments on commit 4eecfee

Please sign in to comment.