diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-01-18 01:48:00 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-01-18 01:48:00 -0800 |
| commit | e439b65e387609b2a761d9a976c0efc44060dff5 (patch) | |
| tree | d2854fdf7cadf0706d64c7dc6514687b4265fb69 | |
| parent | c7197470fdf947323fb31574ee328ea084f23ac8 (diff) | |
| download | seaweedfs-e439b65e387609b2a761d9a976c0efc44060dff5.tar.xz seaweedfs-e439b65e387609b2a761d9a976c0efc44060dff5.zip | |
fix test2.21
| -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 afa361561..d86d92ac9 100644 --- a/weed/filesys/dir.go +++ b/weed/filesys/dir.go @@ -178,7 +178,7 @@ func (dir *Dir) doCreateEntry(name string, mode os.FileMode, uid, gid uint32, ex OExcl: exlusive, Signatures: []int32{dir.wfs.signature}, } - glog.V(1).Infof("create %s/%s: %v", dir.FullPath(), name) + glog.V(1).Infof("create %s/%s", dir.FullPath(), name) err := dir.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error { |
