diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-08-15 19:55:28 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-08-15 19:55:28 -0700 |
| commit | 003d48da21b0ecd0758d79bfed234cb2bf820398 (patch) | |
| tree | 0b2bc5f2497280196ed2986f77a2b28e2d04b789 /weed/filesys/dir.go | |
| parent | 6ee8d952d24181e3b0b590aef77e96b289d49f73 (diff) | |
| download | seaweedfs-003d48da21b0ecd0758d79bfed234cb2bf820398.tar.xz seaweedfs-003d48da21b0ecd0758d79bfed234cb2bf820398.zip | |
adjust logs
Diffstat (limited to 'weed/filesys/dir.go')
| -rw-r--r-- | weed/filesys/dir.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filesys/dir.go b/weed/filesys/dir.go index 0bfb009f0..578c40014 100644 --- a/weed/filesys/dir.go +++ b/weed/filesys/dir.go @@ -240,7 +240,7 @@ func (dir *Dir) Lookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse. return nil, fuse.ENOENT } } else { - glog.V(4).Infof("dir Lookup cache hit %s", fullFilePath) + glog.V(5).Infof("dir Lookup cache hit %s", fullFilePath) } if entry != nil { @@ -268,7 +268,7 @@ func (dir *Dir) Lookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse. func (dir *Dir) ReadDirAll(ctx context.Context) (ret []fuse.Dirent, err error) { - glog.V(4).Infof("dir ReadDirAll %s", dir.FullPath()) + glog.V(5).Infof("dir ReadDirAll %s", dir.FullPath()) processEachEntryFn := func(entry *filer_pb.Entry, isLast bool) error { fullpath := util.NewFullPath(dir.FullPath(), entry.Name) |
