diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-10-04 16:21:43 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-10-04 16:21:43 -0700 |
| commit | 6b591b02af747c6f8b926558cc5501b83cc42c3c (patch) | |
| tree | f3d108d7119d31a229e1ef96728e687a03278830 | |
| parent | b5974066991d8cd64173f8990c30de14aed8ff5e (diff) | |
| download | seaweedfs-6b591b02af747c6f8b926558cc5501b83cc42c3c.tar.xz seaweedfs-6b591b02af747c6f8b926558cc5501b83cc42c3c.zip | |
adjust log level
| -rw-r--r-- | weed/filer/reader_at.go | 4 |
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 |
