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

Merge pull request #1271 from ipfs/fix/shutdown-err

silence error log on shutdown
parents ba82328d bd30866c
......@@ -80,7 +80,7 @@ func (fs *Filesystem) Close() error {
defer wg.Done()
err := r.Publish(context.TODO())
if err != nil {
log.Error(err)
log.Notice(err)
return
}
}(r)
......
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