Skip to content

Commit

Permalink
chore: add log message
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj committed Jun 10, 2024
1 parent 6d00496 commit 1508661
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- dev

- test/**
# 권한 설정
permissions:
contents: read
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ public OAuthUserDataResponse getOAuthUserData(OAuthUserDataRequest request) {
String refreshToken = userData.getRefreshToken();
String idToken = userData.getIdToken();

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

0 comments on commit 1508661

Please sign in to comment.