From 5c48c23235e33e1b800c68fce1e07e34c89ac8c6 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sat, 12 Feb 2022 22:45:07 -0800 Subject: remove println --- weed/mount/weedfs_dir_read.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'weed/mount/weedfs_dir_read.go') diff --git a/weed/mount/weedfs_dir_read.go b/weed/mount/weedfs_dir_read.go index bae6a18a2..40e164fc9 100644 --- a/weed/mount/weedfs_dir_read.go +++ b/weed/mount/weedfs_dir_read.go @@ -36,8 +36,6 @@ func (wfs *WFS) ReadDirPlus(cancel <-chan struct{}, input *fuse.ReadIn, out *fus func (wfs *WFS) doReadDirectory(input *fuse.ReadIn, out *fuse.DirEntryList, isPlusMode bool) fuse.Status { dirPath := wfs.inodeToPath.GetPath(input.NodeId) - println("input size", input.Size, "offset", input.Offset, "pid", input.Caller.Pid) - var counter uint64 var dirEntry fuse.DirEntry if input.Offset == 0 { @@ -64,7 +62,6 @@ func (wfs *WFS) doReadDirectory(input *fuse.ReadIn, out *fuse.DirEntryList, isPl } dirEntry.Name = entry.Name() inode := wfs.inodeToPath.GetInode(dirPath.Child(dirEntry.Name)) - println("entry", dirEntry.Name, "inode", inode) dirEntry.Ino = inode dirEntry.Mode = toSystemMode(entry.Mode) if !isPlusMode { -- cgit v1.2.3