adjust logging

This commit is contained in:
Chris Lu
2020-01-22 15:37:59 -08:00
parent 6b48d246a5
commit 66ded8804a
2 changed files with 1 additions and 2 deletions

View File

@@ -246,7 +246,6 @@ func (dir *Dir) ReadDirAll(ctx context.Context) (ret []fuse.Dirent, err error) {
dirent := fuse.Dirent{Inode: inode, Name: entry.Name, Type: fuse.DT_File}
ret = append(ret, dirent)
}
glog.V(4).Infof("dir ReadDirAll : %s %+v", fullpath, entry)
dir.wfs.cacheSet(fullpath, entry, cacheTtl)
})
if readErr != nil {