From 6b591b02af747c6f8b926558cc5501b83cc42c3c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 4 Oct 2020 16:21:43 -0700 Subject: [PATCH] adjust log level --- weed/filer/reader_at.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/filer/reader_at.go b/weed/filer/reader_at.go index 1c11f718a..af6f688e7 100644 --- a/weed/filer/reader_at.go +++ b/weed/filer/reader_at.go @@ -193,11 +193,11 @@ func (c *ChunkReadAt) readOneWholeChunk(chunkView *ChunkView) (interface{}, erro func (c *ChunkReadAt) doFetchFullChunkData(chunkView *ChunkView) ([]byte, error) { - glog.V(2).Infof("+ doFetchFullChunkData %s", chunkView.FileId) + glog.V(4).Infof("+ doFetchFullChunkData %s", chunkView.FileId) data, err := fetchChunk(c.lookupFileId, chunkView.FileId, chunkView.CipherKey, chunkView.IsGzipped) - glog.V(2).Infof("- doFetchFullChunkData %s", chunkView.FileId) + glog.V(4).Infof("- doFetchFullChunkData %s", chunkView.FileId) return data, err