File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/src/main/java/to/bitkit/repositories Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -363,15 +363,15 @@ class ActivityRepo @Inject constructor(
363363 when (activity.v1.txType) {
364364 PaymentType .RECEIVED -> {
365365 // TODO Temporary solution while whe ldk-node doesn't return the address directly
366- Logger .debug (" Fetching data for txId: ${activity.v1.txId} " , context = TAG )
366+ Logger .verbose (" Fetching data for txId: ${activity.v1.txId} " , context = TAG )
367367 runCatching {
368368 addressChecker.getTransaction(activity.v1.txId)
369369 }.onSuccess { txDetails ->
370- Logger .debug (" Tx detail fetched with success: $txDetails " , context = TAG )
370+ Logger .verbose (" Tx detail fetched with success: $txDetails " , context = TAG )
371371 txDetails.vout.map { vOut ->
372372 async {
373373 vOut.scriptpubkey_address?.let {
374- Logger .debug (" Extracted address: $it " , context = TAG )
374+ Logger .verbose (" Extracted address: $it " , context = TAG )
375375 db.tagMetadataDao().searchByAddress(it)
376376 }?.let { tagMetadata ->
377377 Logger .debug(" Tags metadata found! $tagMetadata " , context = TAG )
You can’t perform that action at this time.
0 commit comments