Skip to content

Commit 5bc578f

Browse files
committed
contracts: log Signer reward from Info to Debug
1 parent e2f0638 commit 5bc578f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ func CalculateRewardForSigner(chainReward *big.Int, signers map[common.Address]*
407407

408408
log.Info("Signers data", "totalSigner", totalSigner, "totalReward", chainReward)
409409
for addr, signer := range signers {
410-
log.Info("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
410+
log.Debug("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
411411
}
412412

413413
return resultSigners, nil

0 commit comments

Comments
 (0)