summaryrefslogtreecommitdiff
path: root/pathfs_frontend
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-17 22:08:49 +0200
committerJakob Unterwurzacher2015-09-17 22:08:49 +0200
commit67fe4557e5225f5be1687aca3d1934ad1141a684 (patch)
tree7f8bc19e41eaba5a59109f46de6aa8b72809af96 /pathfs_frontend
parent338925aef45d8ec960e1ba4d160dbb3848bd7a9d (diff)
Fix read benchmark
Diffstat (limited to 'pathfs_frontend')
-rw-r--r--pathfs_frontend/fs.go2
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() {