remove println

This commit is contained in:
chrislu
2022-02-12 22:45:07 -08:00
parent 7cfbf1e85f
commit 5c48c23235
3 changed files with 0 additions and 8 deletions

View File

@@ -18,8 +18,6 @@ func (wfs *WFS) Lookup(cancel <-chan struct{}, header *fuse.InHeader, name strin
dirPath := wfs.inodeToPath.GetPath(header.NodeId)
println("lookup", name, "dir inode", header.NodeId)
fullFilePath := dirPath.Child(name)
visitErr := meta_cache.EnsureVisited(wfs.metaCache, wfs, dirPath)
@@ -50,8 +48,6 @@ func (wfs *WFS) Lookup(cancel <-chan struct{}, header *fuse.InHeader, name strin
inode := wfs.inodeToPath.GetInode(fullFilePath)
println("found", name, "inode", inode)
wfs.outputEntry(out, inode, localEntry)
return fuse.OK