Skip to content

Commit

Permalink
feat: 로그인 로그 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
daeunkwak committed Jul 21, 2023
1 parent c74c695 commit 46a2d28
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public class OauthLoginController {
public ResponseEntity<ResponseJwtTokenDto> loginOauth(@Valid @RequestBody OauthReqDto oauthReqDto, HttpServletRequest httpServletRequest) throws JsonProcessingException {
log.info("=== Oauth login start ===");

log.info("authorization :::::: " + HttpHeaders.AUTHORIZATION);
log.info("socialType ::::: " + oauthReqDto.getSocialType());
log.info("clientType :::: " + oauthReqDto.getClientType());

final SocialType socialType = oauthReqDto.getSocialType();
ResponseJwtTokenDto jwtTokenDto;

Expand Down

0 comments on commit 46a2d28

Please sign in to comment.