We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44617c5 commit 95b89d6Copy full SHA for 95b89d6
libs/servlet-security/src/main/java/no/nav/testnav/libs/servletsecurity/action/GetUserInfo.java
@@ -35,6 +35,7 @@ public Optional<UserInfo> call() {
35
var jwt = JWT.decode(token);
36
var verifier = JWT.require(Algorithm.HMAC256(secret)).build();
37
verifier.verify(jwt);
38
+ log.info("jwt ---> {}", jwt);
39
return new UserInfo(
40
jwt.getClaim(UserConstant.USER_CLAIM_ID).asString(),
41
jwt.getClaim(UserConstant.USER_CLAIM_ORG).asString(),
0 commit comments