remove logger

This commit is contained in:
Valentin CZERYBA 2022-07-20 19:34:29 +02:00
parent d1c84d5261
commit bf627b304b

View File

@ -70,12 +70,10 @@ public class TokenRessource {
return Response.status(Response.Status.CREATED).cookie(new NewCookie(new Cookie("jwt", newJwtCookie), "Token JWT", 60, false), new NewCookie(new Cookie("user", nameEncoded), "Username", 60, false)).build();
}
// All mp.jwt and smallrye.jwt properties are still effective, only the verification key is customized.
LOGGER.info(jwtCookie);
try {
jwt = parser.parse(jwtCookie);
}
catch(ParseException p){
LOGGER.info(p);
return Response.status(Response.Status.NOT_ACCEPTABLE).build();
}
// or jwt = parser.decrypt(jwtCookie, secret);