aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-29 11:56:22 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-29 11:56:22 -0700
commit063c9ddac5277f4c20489129223f2c49ce51ad3b (patch)
treedc6c4e983a867bc297dca746b2955928807f5528
parentca658a97c5248ba099356b006f0b341af53b0816 (diff)
downloadseaweedfs-063c9ddac5277f4c20489129223f2c49ce51ad3b.tar.xz
seaweedfs-063c9ddac5277f4c20489129223f2c49ce51ad3b.zip
adjust logs
-rw-r--r--weed/filesys/filehandle.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/filehandle.go b/weed/filesys/filehandle.go
index 87254b7c4..7d9edb235 100644
--- a/weed/filesys/filehandle.go
+++ b/weed/filesys/filehandle.go
@@ -206,7 +206,7 @@ func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
func (fh *FileHandle) doFlush(ctx context.Context, header fuse.Header) error {
// fflush works at fh level
// send the data to the OS
- glog.V(4).Infof("doFlush %s fh %d %v", fh.f.fullpath(), fh.handle, header)
+ glog.V(4).Infof("doFlush %s fh %d", fh.f.fullpath(), fh.handle)
chunks, err := fh.dirtyPages.saveExistingPagesToStorage()
if err != nil {