Skip to content

Commit 94a934c

Browse files
authored
fix: replaced printf-style placeholders with structured key-value logging (#469)
Signed-off-by: Ales Verbic <[email protected]>
1 parent 1cf36a1 commit 94a934c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

input/chainsync/chainsync.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,9 +635,9 @@ func resolveTransactionInputs(
635635

636636
if len(matches) == 0 {
637637
slog.Info(
638-
"no matches found for input TxId: %s, Index: %d, could be due to Kupo not in sync",
639-
txId,
640-
txIndex,
638+
"no matches found for input, could be due to Kupo not in sync.",
639+
"txId", txId,
640+
"txIndex", txIndex,
641641
)
642642
} else {
643643
slog.Debug(fmt.Sprintf("found matches %d for input TxId: %s, Index: %d", len(matches), txId, txIndex))

0 commit comments

Comments
 (0)