Skip to content

Commit fd50eb0

Browse files
authored
fix: Add IPFS & IPNS path details to error (re. #10762) (#10770)
1 parent ef7cc60 commit fd50eb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fuse/node/mount_unix.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ func doMount(node *core.IpfsNode, fsdir, nsdir string) error {
8989
wg.Wait()
9090

9191
if err1 != nil {
92-
log.Errorf("error mounting: %s", err1)
92+
log.Errorf("error mounting IPFS %s: %s", fsdir, err1)
9393
}
9494

9595
if err2 != nil {
96-
log.Errorf("error mounting: %s", err2)
96+
log.Errorf("error mounting IPNS %s for IPFS %s: %s", nsdir, fsdir, err2)
9797
}
9898

9999
if err1 != nil || err2 != nil {

0 commit comments

Comments
 (0)