Skip to content

Commit

Permalink
fix(pubkey): balance change INFO level
Browse files Browse the repository at this point in the history
  • Loading branch information
tyzbit committed Jan 20, 2023
1 parent adef86c commit f302e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubkey.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit f302e1a

Please sign in to comment.