Skip to content

Commit aebce2c

Browse files
committed
refactor : 호출 확인용 로그
1 parent 44a9bd0 commit aebce2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/api/tokbaro/domain/user/service/UserServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public SignInUserRes appleLogin(AppleIdReq appleIdReq) {
8383
JWTClaimsSet claims;
8484
try{
8585
claims = appleJwtVerifier.verify(appleIdReq.getIdentityToken());
86+
log.info("Apple identityToken claims: {}", claims.getClaims().toString());
8687
}catch (BadJOSEException e){
8788
throw new CustomException(UserErrorResponseCode.INVALID_APPLE_ID_TOKEN_401);
8889
}
@@ -108,7 +109,6 @@ public SignInUserRes appleLogin(AppleIdReq appleIdReq) {
108109
if(userRepository.existsByUsername(email)){
109110
throw new CustomException(UserErrorResponseCode.DUPLICATE_USERNAME_409);
110111
}
111-
112112
user = User.builder()
113113
.username(email)
114114
.appleId(appleId)

0 commit comments

Comments
 (0)