Merge pull request #356 from filecoin-project/fix/not-found-log

remove not found log, its okay
This commit is contained in:
Łukasz Magiera 2019-10-14 00:56:07 +02:00 committed by GitHub
commit 7e6e18c07a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,9 +67,6 @@ type mybs struct {
func (m mybs) Get(c cid.Cid) (block.Block, error) {
b, err := m.Blockstore.Get(c)
if err != nil {
// change to error for stacktraces, don't commit with that pls
// TODO: debug why we get so many not founds in tests
log.Warnf("Get failed: %s %s", c, err)
return nil, err
}