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 46a2d28 commit 03ea4f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ 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("authorization :::::: " + httpServletRequest.getHeader(HttpHeaders.AUTHORIZATION));
log.info("socialType ::::: " + oauthReqDto.getSocialType());
log.info("clientType :::: " + oauthReqDto.getClientType());

Expand Down

0 comments on commit 03ea4f9

Please sign in to comment.