Skip to content

Commit f0276dc

Browse files
committed
Merge pull request #1271 from ipfs/fix/shutdown-err
silence error log on shutdown
2 parents ba82328 + bd30866 commit f0276dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipnsfs/system.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (fs *Filesystem) Close() error {
8080
defer wg.Done()
8181
err := r.Publish(context.TODO())
8282
if err != nil {
83-
log.Error(err)
83+
log.Notice(err)
8484
return
8585
}
8686
}(r)

0 commit comments

Comments
 (0)