refactor: move logs to timber
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package com.bitcointxoko.gudariwallet.ui
|
||||
|
||||
import android.content.ClipboardManager
|
||||
import android.util.Log
|
||||
import timber.log.Timber
|
||||
import androidx.compose.animation.AnimatedVisibility
|
||||
import androidx.compose.animation.core.tween
|
||||
import androidx.compose.animation.fadeIn
|
||||
@@ -164,7 +164,7 @@ fun WalletScreen(
|
||||
|
||||
LaunchedEffect(Unit) {
|
||||
vm.navigateToReceive.collect {
|
||||
Log.d("WalletScreen", "LNURL-WITHDRAW [NAV RECEIVED] switching to Receive tab")
|
||||
Timber.d("LNURL-WITHDRAW [NAV RECEIVED] switching to Receive tab")
|
||||
navController.navigate(TabItem.Receive.route) {
|
||||
popUpTo(navController.graph.findStartDestination().id) {
|
||||
saveState = true
|
||||
@@ -178,7 +178,7 @@ fun WalletScreen(
|
||||
val intentUri = pendingPaymentUri.value
|
||||
LaunchedEffect(intentUri) {
|
||||
if (intentUri != null) {
|
||||
Log.d("WalletScreen", "INTENT [URI] deep link received: $intentUri")
|
||||
Timber.d("INTENT [URI] deep link received: $intentUri")
|
||||
pendingPaymentUri.value = null
|
||||
vm.scan(intentUri, sendStrings)
|
||||
navController.navigate(TabItem.Send.route) {
|
||||
|
||||
Reference in New Issue
Block a user