fix: Add IPFS & IPNS path details to error (re. #10762) (#10770)
Michael Vorburger committed
Apr 1, 2025 at 16:28 UTC
fd50eb0fc385ec35cc2269646182920849b3c9b5
1 file changed
+2
-2
fuse/node/mount_unix.go
+2
-2
@@ -89,11 +89,11 @@ func doMount(node *core.IpfsNode, fsdir, nsdir string) error {
89
wg.Wait()
90
91
if err1 != nil {
92
- log.Errorf("error mounting: %s", err1)
92
+ log.Errorf("error mounting IPFS %s: %s", fsdir, err1)
93
}
94
95
if err2 != nil {
96
- log.Errorf("error mounting: %s", err2)
96
+ log.Errorf("error mounting IPNS %s for IPFS %s: %s", nsdir, fsdir, err2)
97
}
98
99
if err1 != nil || err2 != nil {