Skip to content

Commit

Permalink
log 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
KWY0218 committed Jan 17, 2024
1 parent fe55425 commit 37bca84
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
import com.moddy.server.external.kakao.feign.KakaoApiClient;
import com.moddy.server.external.kakao.feign.KakaoAuthApiClient;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;


@Slf4j
@Service
@RequiredArgsConstructor
public class KakaoSocialService extends SocialService {
Expand All @@ -24,6 +26,7 @@ public class KakaoSocialService extends SocialService {
@Override
public String getIdFromKakao(String baseUrl, String kakaoCode) {
String redirectUrl = baseUrl + KAKAO_ROUTER;
log.info("----------------------> " + baseUrl + " <---------------------");
KakaoAccessTokenResponse tokenResponse = kakaoAuthApiClient.getOAuth2AccessToken(
GRANT_TYPE,
clientId,
Expand Down

0 comments on commit 37bca84

Please sign in to comment.