diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-01-20 20:24:23 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-01-20 20:24:23 -0800 |
| commit | fca6152c3a4a55248fe37a2e06198d27422bef5f (patch) | |
| tree | be7bc0a9153b05371f97d46e95f626f2c1787ff0 | |
| parent | a990ef2106a2571d0e2578eecdd856ee74986944 (diff) | |
| download | seaweedfs-fca6152c3a4a55248fe37a2e06198d27422bef5f.tar.xz seaweedfs-fca6152c3a4a55248fe37a2e06198d27422bef5f.zip | |
fix print format
| -rw-r--r-- | weed/filesys/dir.go | 2 |
1 files changed, 1 insertions, 1 deletions
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)) } |
