Skip to content

Commit

Permalink
remove useless log
Browse files Browse the repository at this point in the history
  • Loading branch information
l2hyunwoo committed Oct 7, 2023
1 parent 96c8f5b commit 1980732
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ class AttendanceViewModel @Inject constructor(
.onSuccess {
_attendanceRound.value = AttendanceState.Success(it)
subLectureId = it.id
Timber.tag("zzzz id").i(it.id.toString())
when (it.id) {
-1L -> {
setAttendanceButtonVisibility(false)
Expand All @@ -282,7 +281,6 @@ class AttendanceViewModel @Inject constructor(
}
}
}.onFailure {
Timber.tag("zzzz failure").e(it)
Timber.e(it)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ class MissionDetailViewModel @Inject constructor(
private suspend fun handleSubmit() {
viewModelScope.launch {
val currentState = uiState.value
Timber.d("MissionDetailViewModel onSubmit() $currentState")
val (id, imageUri, content) = currentState
uiState.update {
it.copy(isError = false, error = null, isLoading = true)
Expand Down

0 comments on commit 1980732

Please sign in to comment.