aboutsummaryrefslogtreecommitdiff
path: root/weed/filer2/reader_at.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-08-14 00:22:21 -0700
committerChris Lu <chris.lu@gmail.com>2020-08-14 00:22:21 -0700
commitedfa73782fe934ebda68fda1db490c964ca52028 (patch)
tree3f04b2254bc8dd843e986e2c40ea6188811a8bc5 /weed/filer2/reader_at.go
parent0983060a9080e69dc7edf58f172ab170755c3511 (diff)
downloadseaweedfs-edfa73782fe934ebda68fda1db490c964ca52028.tar.xz
seaweedfs-edfa73782fe934ebda68fda1db490c964ca52028.zip
adjust log level
Diffstat (limited to 'weed/filer2/reader_at.go')
-rw-r--r--weed/filer2/reader_at.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer2/reader_at.go b/weed/filer2/reader_at.go
index 568d94267..2f65761cc 100644
--- a/weed/filer2/reader_at.go
+++ b/weed/filer2/reader_at.go
@@ -117,7 +117,7 @@ func (c *ChunkReadAt) fetchChunkData(chunkView *ChunkView) (data []byte, err err
hasDataInCache := false
chunkData := c.chunkCache.GetChunk(chunkView.FileId, chunkView.ChunkSize)
if chunkData != nil {
- glog.V(3).Infof("cache hit %s [%d,%d)", chunkView.FileId, chunkView.LogicOffset, chunkView.LogicOffset+int64(chunkView.Size))
+ glog.V(4).Infof("cache hit %s [%d,%d)", chunkView.FileId, chunkView.LogicOffset, chunkView.LogicOffset+int64(chunkView.Size))
hasDataInCache = true
} else {
chunkData, err = c.doFetchFullChunkData(chunkView.FileId, chunkView.CipherKey, chunkView.IsGzipped)