From fca6152c3a4a55248fe37a2e06198d27422bef5f Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 20 Jan 2020 20:24:23 -0800 Subject: [PATCH] fix print format --- weed/filesys/dir.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/filesys/dir.go b/weed/filesys/dir.go index 7ad141ea5..7ed638e0e 100644 --- a/weed/filesys/dir.go +++ b/weed/filesys/dir.go @@ -403,7 +403,7 @@ func (dir *Dir) Listxattr(ctx context.Context, req *fuse.ListxattrRequest, resp } func (dir *Dir) Forget() { - glog.V(3).Infof("Forget dir %s/%s", dir.Path) + glog.V(3).Infof("Forget dir %s", dir.Path) dir.wfs.forgetNode(filer2.FullPath(dir.Path)) }