Skip to content

Commit

Permalink
feat: remove logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Heonbyeong committed Aug 25, 2024
1 parent 0f4b530 commit bdb78f3
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class LoginViewModel @Inject constructor(
postAccessTokenUseCase(type = LoginType.KAKAO, accessToken = accessToken).onSuccess {
getSchoolInfo()
}.onFailure {
Log.d("LoginViewModel, in Success.Failure", it.message ?: it.toString())
reduce {
state.copy(
visibleError = true,
Expand All @@ -35,7 +34,6 @@ class LoginViewModel @Inject constructor(
}

fun onKakaoLoginFailure(throwable: Throwable) = intent {
Log.d("LoginViewModel, in Failure", KakaoSdk.keyHash)
reduce {
state.copy(
visibleError = true,
Expand Down

0 comments on commit bdb78f3

Please sign in to comment.