Skip to content

Commit

Permalink
Lagt på logging II #deploy-profil-api
Browse files Browse the repository at this point in the history
  • Loading branch information
krharum committed Jan 21, 2025
1 parent 95b89d6 commit 5ceddb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public Optional<UserInfo> call() {
var jwt = JWT.decode(token);
var verifier = JWT.require(Algorithm.HMAC256(secret)).build();
verifier.verify(jwt);
log.info("jwt ---> {}", jwt);
log.info("jwt ---> {}", jwt.getToken());
return new UserInfo(
jwt.getClaim(UserConstant.USER_CLAIM_ID).asString(),
jwt.getClaim(UserConstant.USER_CLAIM_ORG).asString(),
Expand Down

0 comments on commit 5ceddb0

Please sign in to comment.