Skip to content

Commit

Permalink
chore: Apple Login 실패 로그에 에러 메시지를 추가한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed Jun 24, 2024
1 parent ff9ddea commit bde00a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public OAuthUserDataResponse getOAuthUserData(OAuthUserDataRequest request) {

return decodePayload(idToken, request.getName(), refreshToken);
} catch (RestClientException e) {
log.warn("[AppleService] failed to get OAuth User Data = {}", request.getAccessToken(), e.getMessage());
log.warn("[AppleService] failed to get OAuth User Data = {}, message = {}", request.getAccessToken(), e.getMessage());
throw new HttpClientException(ErrorCode.HTTP_CLIENT_REQUEST_FAILED);
}
}
Expand Down

0 comments on commit bde00a2

Please sign in to comment.