aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/filer/reader_at.go4
1 files 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