error logging

This commit is contained in:
Chris Lu
2020-06-26 10:01:55 -07:00
parent 48b23f2fdd
commit 212b6e7d42
4 changed files with 7 additions and 3 deletions

View File

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