1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-01 14:51:09 +02:00

adjust log level

This commit is contained in:
Chris Lu 2020-10-04 16:21:43 -07:00
parent b597406699
commit 6b591b02af

View file

@ -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