Skip to content

Commit

Permalink
feat: kakao 로그인 취소 로깅 추가 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Oct 2, 2024
1 parent 9ce3c03 commit 5ece48e
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ class KakaoStrategy @Inject constructor() : BaseStrategy() {
else -> continuation.resumeWithException(IllegalStateException("Unexpected error during KakaoTalk login"))
}
}

continuation.invokeOnCancellation {
Log.d(tag, "loginWithKakaoTalk: invokeOnCancellation")
// TODO LOGGING
}
}

/**
Expand All @@ -63,5 +68,10 @@ class KakaoStrategy @Inject constructor() : BaseStrategy() {
else -> continuation.resumeWithException(IllegalStateException("Unexpected error during KakaoAccount login"))
}
}

continuation.invokeOnCancellation {
Log.d(tag, "loginWithKakaoAccount: invokeOnCancellation")
// TODO LOGGING
}
}
}

0 comments on commit 5ece48e

Please sign in to comment.