vspd: Reduce some logs to debug level.

This commit is contained in:
jholdstock 2023-09-19 14:16:44 +01:00 committed by Jamie Holdstock
parent 2994d128fe
commit 1f62d46bdd
2 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ func (v *Vspd) addToWallets(ctx context.Context, dcrdClient *rpc.DcrdRPC) {
}
}
v.log.Infof("Ticket added to voting wallet (wallet=%s, ticketHash=%s)",
v.log.Debugf("Ticket added to voting wallet (wallet=%s, ticketHash=%s)",
walletClient.String(), ticket.Hash)
}
}

View File

@ -15,7 +15,7 @@ import (
func (v *Vspd) checkWalletConsistency(ctx context.Context) {
const funcName = "checkWalletConsistency"
v.log.Info("Checking voting wallet consistency")
v.log.Debug("Checking voting wallet consistency")
dcrdClient, _, err := v.dcrd.Client()
if err != nil {