From f302e1a604ed91f1ce47c9f3f7acf3abaf2ced3e Mon Sep 17 00:00:00 2001 From: Tyler Hawkins <3319104+tyzbit@users.noreply.github.com> Date: Thu, 19 Jan 2023 22:43:50 -0500 Subject: [PATCH] fix(pubkey): balance change INFO level --- pubkey.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubkey.go b/pubkey.go index b79f9a7..ebdbfa9 100644 --- a/pubkey.go +++ b/pubkey.go @@ -169,7 +169,7 @@ main: TXCount: totalTxCount, } if pubkeyInfo.BalanceSat != oldPubkeyInfo.BalanceSat { - log.Debugf("\"%s\" (%s) balance updated from %d to %d sats", nickname, pubKeys[0], oldPubkeyInfo.BalanceSat, pubkeyInfo.BalanceSat) + log.Infof("\"%s\" (%s) balance updated from %d to %d sats", nickname, pubKeys[0], oldPubkeyInfo.BalanceSat, pubkeyInfo.BalanceSat) w.UpdateInfo(pubkeyInfo) w.SendNotification(pubkeyInfo, pubkeyMessageTemplate) }