Skip to content

Commit

Permalink
feat: log key hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Heonbyeong committed Aug 25, 2024
1 parent e936d1e commit d6bae40
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.moneymong.moneymong.feature.sign.viewmodel

import android.util.Log
import com.kakao.sdk.common.KakaoSdk
import com.moneymong.moneymong.common.base.BaseViewModel
import com.moneymong.moneymong.domain.usecase.token.PostAccessTokenUseCase
import com.moneymong.moneymong.domain.usecase.token.TokenUseCase
Expand Down Expand Up @@ -34,7 +35,7 @@ class LoginViewModel @Inject constructor(
}

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

0 comments on commit d6bae40

Please sign in to comment.