aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys
diff options
context:
space:
mode:
Diffstat (limited to 'weed/filesys')
-rw-r--r--weed/filesys/dir.go2
-rw-r--r--weed/filesys/xattr.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/weed/filesys/dir.go b/weed/filesys/dir.go
index 4687d5c91..b783cbcbe 100644
--- a/weed/filesys/dir.go
+++ b/weed/filesys/dir.go
@@ -196,7 +196,7 @@ func (dir *Dir) Lookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse.
entry := dir.wfs.cacheGet(fullFilePath)
if entry == nil {
- glog.V(3).Infof("dir Lookup cache miss %s", fullFilePath)
+ // glog.V(3).Infof("dir Lookup cache miss %s", fullFilePath)
entry, err = filer2.GetEntry(ctx, dir.wfs, fullFilePath)
if err != nil {
glog.V(1).Infof("dir GetEntry %s: %v", fullFilePath, err)
diff --git a/weed/filesys/xattr.go b/weed/filesys/xattr.go
index 52a447d95..75ba0f2ba 100644
--- a/weed/filesys/xattr.go
+++ b/weed/filesys/xattr.go
@@ -115,7 +115,7 @@ func (wfs *WFS) maybeLoadEntry(ctx context.Context, dir, name string) (entry *fi
if entry != nil {
return
}
- glog.V(3).Infof("read entry cache miss %s", fullpath)
+ // glog.V(3).Infof("read entry cache miss %s", fullpath)
err = wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
@@ -130,7 +130,7 @@ func (wfs *WFS) maybeLoadEntry(ctx context.Context, dir, name string) (entry *fi
glog.V(3).Infof("file attr read not found file %v: %v", request, err)
return fuse.ENOENT
}
- glog.V(3).Infof("file attr read file %v: %v", request, err)
+ glog.V(3).Infof("attr read %v: %v", request, err)
return fuse.EIO
}