aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/dir.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-05-10 21:47:51 -0700
committerChris Lu <chris.lu@gmail.com>2021-05-10 21:47:51 -0700
commit1737af480a15c6d23456b6b30dd662addbe37c14 (patch)
treefb170f358a71b9102009749877261f35836b8069 /weed/filesys/dir.go
parentd06ecc2649416128a69a29187d3f3b89f5ad38dd (diff)
downloadseaweedfs-1737af480a15c6d23456b6b30dd662addbe37c14.tar.xz
seaweedfs-1737af480a15c6d23456b6b30dd662addbe37c14.zip
adjust logs
Diffstat (limited to 'weed/filesys/dir.go')
-rw-r--r--weed/filesys/dir.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/dir.go b/weed/filesys/dir.go
index 09d5fd449..72e41247f 100644
--- a/weed/filesys/dir.go
+++ b/weed/filesys/dir.go
@@ -296,7 +296,7 @@ func (dir *Dir) Mkdir(ctx context.Context, req *fuse.MkdirRequest) (fs.Node, err
func (dir *Dir) Lookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse.LookupResponse) (node fs.Node, err error) {
dirPath := util.FullPath(dir.FullPath())
- glog.V(4).Infof("dir Lookup %s: %s by %s", dirPath, req.Name, req.Header.String())
+ // glog.V(4).Infof("dir Lookup %s: %s by %s", dirPath, req.Name, req.Header.String())
fullFilePath := dirPath.Child(req.Name)
visitErr := meta_cache.EnsureVisited(dir.wfs.metaCache, dir.wfs, dirPath)