Skip to content

Commit

Permalink
feat: update log (#2024)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai authored Aug 5, 2024
1 parent d6a7907 commit e61e2a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/pkg/dal/collector/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func getSignerListFromProofs(hash []byte, proofChunks [][]byte) ([]klaytncommon.
func checkForNonWhitelistedSigners(signers []klaytncommon.Address, whitelist []klaytncommon.Address) error {
for _, signer := range signers {
if !isWhitelisted(signer, whitelist) {
log.Error().Str("Player", "DAL").Str("signer", signer.Hex()).Msg("non-whitelisted signer")
log.Error().Str("Player", "DAL").Any("signers", signers).Str("signer", signer.Hex()).Msg("non-whitelisted signer")
return errorsentinel.ErrDalSignerNotWhitelisted
}
}
Expand Down

0 comments on commit e61e2a9

Please sign in to comment.