Skip to content

Commit

Permalink
[del/#145] 불필요한 로그 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
blueme0 committed Feb 13, 2024
1 parent 0def1e2 commit 3d57b28
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import com.teumteum.domain.repository.AuthRepository
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import timber.log.Timber
import javax.inject.Inject

@HiltViewModel
Expand All @@ -20,7 +19,6 @@ class SignInViewModel @Inject constructor(
var oauthId = ""

fun updateMemberState(socialLoginResult: SocialLoginResult) {
Timber.tag("teum-login").d("${socialLoginResult}")
if (socialLoginResult.message == null) {
if (!socialLoginResult.accessToken.isNullOrEmpty() && !socialLoginResult.refreshToken.isNullOrEmpty()) {
// 기존 회원일 때
Expand Down

0 comments on commit 3d57b28

Please sign in to comment.