Skip to content

Commit

Permalink
Merge pull request #3562 from filecoin-project/fix/mpool-log-spam
Browse files Browse the repository at this point in the history
reduce mpool add failure log spam
  • Loading branch information
magik6k authored Sep 5, 2020
2 parents 70da2b7 + 275f071 commit 1e190e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/messagepool/messagepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ func (mp *MessagePool) addLocked(m *types.SignedMessage, strict bool) error {

incr, err := mset.add(m, mp, strict)
if err != nil {
log.Info(err)
log.Debug(err)
return err
}

Expand Down

0 comments on commit 1e190e4

Please sign in to comment.