diff options
Diffstat (limited to 'pathfs_frontend')
| -rw-r--r-- | pathfs_frontend/fs.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pathfs_frontend/fs.go b/pathfs_frontend/fs.go index bf93766..2ae066f 100644 --- a/pathfs_frontend/fs.go +++ b/pathfs_frontend/fs.go @@ -38,7 +38,7 @@ func (fs *FS) GetAttr(name string, context *fuse.Context) (*fuse.Attr, fuse.Stat  	cName := fs.EncryptPath(name)  	a, status := fs.FileSystem.GetAttr(cName, context)  	if a == nil { -		cryptfs.Notice.Printf("FS.GetAttr failed: %s\n", status.String()) +		cryptfs.Debug.Printf("FS.GetAttr failed: %s\n", status.String())  		return a, status  	}  	if a.IsRegular() {  | 
