change log level 5 to 4

This commit is contained in:
Chris Lu
2020-08-30 20:12:04 -07:00
parent 56244fb9a1
commit a41588279a
11 changed files with 21 additions and 21 deletions

View File

@@ -94,7 +94,7 @@ func (c *TieredChunkCache) SetChunk(fileId string, data []byte) {
c.Lock()
defer c.Unlock()
glog.V(5).Infof("SetChunk %s size %d\n", fileId, len(data))
glog.V(4).Infof("SetChunk %s size %d\n", fileId, len(data))
c.doSetChunk(fileId, data)
}