diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-05-13 00:32:37 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-05-13 00:32:37 -0700 |
| commit | 3ff307e8422be86f352618bae4d3e53db5c4e145 (patch) | |
| tree | ca3299657d4221e1f24c2b2882e2558278dddfc7 /weed/filesys/file.go | |
| parent | a48ebd7c7391fc649eb1f7925b26e13ad36cc26b (diff) | |
| download | seaweedfs-3ff307e8422be86f352618bae4d3e53db5c4e145.tar.xz seaweedfs-3ff307e8422be86f352618bae4d3e53db5c4e145.zip | |
reduce logs
Diffstat (limited to 'weed/filesys/file.go')
| -rw-r--r-- | weed/filesys/file.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filesys/file.go b/weed/filesys/file.go index 2b1eb5a44..4b711ecee 100644 --- a/weed/filesys/file.go +++ b/weed/filesys/file.go @@ -83,7 +83,7 @@ func (file *File) Attr(ctx context.Context, attr *fuse.Attr) (err error) { func (file *File) Getxattr(ctx context.Context, req *fuse.GetxattrRequest, resp *fuse.GetxattrResponse) error { - glog.V(4).Infof("file Getxattr %s", file.fullpath()) + // glog.V(4).Infof("file Getxattr %s", file.fullpath()) entry, err := file.maybeLoadEntry(ctx) if err != nil { @@ -267,7 +267,7 @@ func (file *File) maybeLoadEntry(ctx context.Context) (entry *filer_pb.Entry, er file.wfs.handlesLock.Unlock() entry = file.entry if found { - glog.V(4).Infof("maybeLoadEntry found opened file %s/%s", file.dir.FullPath(), file.Name) + // glog.V(4).Infof("maybeLoadEntry found opened file %s/%s", file.dir.FullPath(), file.Name) entry = handle.f.entry } |
