Skip to content

Commit

Permalink
contracts: log Signer reward from Info to Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gzliudan authored and JukLee0ira committed Sep 19, 2024
1 parent e821170 commit 176ca89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func CalculateRewardForSigner(chainReward *big.Int, signers map[common.Address]*

log.Info("Signers data", "totalSigner", totalSigner, "totalReward", chainReward)
for addr, signer := range signers {
log.Info("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
log.Debug("Signer reward", "signer", addr, "sign", signer.Sign, "reward", signer.Reward)
}

return resultSigners, nil
Expand Down

0 comments on commit 176ca89

Please sign in to comment.