aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/wfs.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-30 20:12:04 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-30 20:12:04 -0700
commita41588279a10e4326c227471e95abe960f5ce688 (patch)
tree7f13a172cd56759956d08b3ee9837c19c2ea08d6 /weed/filesys/wfs.go
parent56244fb9a13c75616aa8a9232c62d1b896906e98 (diff)
downloadseaweedfs-a41588279a10e4326c227471e95abe960f5ce688.tar.xz
seaweedfs-a41588279a10e4326c227471e95abe960f5ce688.zip
change log level 5 to 4
Diffstat (limited to 'weed/filesys/wfs.go')
-rw-r--r--weed/filesys/wfs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/filesys/wfs.go b/weed/filesys/wfs.go
index 44c2895d3..93819dfa4 100644
--- a/weed/filesys/wfs.go
+++ b/weed/filesys/wfs.go
@@ -148,7 +148,7 @@ func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
// Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
- glog.V(5).Infof("reading fs stats: %+v", req)
+ glog.V(4).Infof("reading fs stats: %+v", req)
if wfs.stats.lastChecked < time.Now().Unix()-20 {
@@ -160,13 +160,13 @@ func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.
Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
}
- glog.V(5).Infof("reading filer stats: %+v", request)
+ glog.V(4).Infof("reading filer stats: %+v", request)
resp, err := client.Statistics(context.Background(), request)
if err != nil {
glog.V(0).Infof("reading filer stats %v: %v", request, err)
return err
}
- glog.V(5).Infof("read filer stats: %+v", resp)
+ glog.V(4).Infof("read filer stats: %+v", resp)
wfs.stats.TotalSize = resp.TotalSize
wfs.stats.UsedSize = resp.UsedSize