Commit e4011410 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

logs: removed all log.Errors unhelpful to users

Let's save log.Error for things the user can take action on.
Moved all our diagnostics to log.Debug. We can ideally reduce them
even further.
parent 31b5f255
...@@ -38,7 +38,7 @@ func (ss *SizeSplitter) Split(r io.Reader) chan []byte { ...@@ -38,7 +38,7 @@ func (ss *SizeSplitter) Split(r io.Reader) chan []byte {
return return
} }
if err != nil { if err != nil {
log.Errorf("Block split error: %s", err) log.Debugf("Block split error: %s", err)
return return
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment