diff options
Diffstat (limited to 'weed/filesys/xattr.go')
| -rw-r--r-- | weed/filesys/xattr.go | 4 |
1 files changed, 2 insertions, 2 deletions
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 } |
