Skip to content

Commit a2e077a

Browse files
committed
chore: move some logs to verbose
1 parent 4e1c34f commit a2e077a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/java/to/bitkit/repositories/ActivityRepo.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)