Skip to content

Commit

Permalink
Merge pull request #1271 from ipfs/fix/shutdown-err
Browse files Browse the repository at this point in the history
silence error log on shutdown
  • Loading branch information
jbenet committed May 21, 2015
2 parents ba82328 + bd30866 commit f0276dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipnsfs/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f0276dc

Please sign in to comment.