remove not found log, its okay

This commit is contained in:
whyrusleeping 2019-10-13 22:16:01 +09:00
parent b563c71f55
commit 097e569792

View File

@ -67,9 +67,6 @@ type mybs struct {
func (m mybs) Get(c cid.Cid) (block.Block, error) { func (m mybs) Get(c cid.Cid) (block.Block, error) {
b, err := m.Blockstore.Get(c) b, err := m.Blockstore.Get(c)
if err != nil { 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 return nil, err
} }