Commit b0a1c934 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

newDirnameMap(): print the name of the file system in case of

problems.
parent 1d8a9208
......@@ -13,7 +13,7 @@ import (
func newDirnameMap(fs fuse.FileSystem, dir string) map[string]bool {
stream, code := fs.OpenDir(dir)
if !code.Ok() {
log.Printf("newDirnameMap(): %v %v", dir, code)
log.Printf("newDirnameMap(%s): %v %v", fs.Name(), dir, code)
return nil
}
......
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