forked from TrueCloudLab/frostfs-node
[#1462] writecache: remove useless logs
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
2ae7c94cd6
commit
feef9a98f7
1 changed files with 5 additions and 6 deletions
|
@ -106,6 +106,11 @@ func (c *cache) flush() {
|
|||
}
|
||||
}
|
||||
|
||||
if len(m) == 0 {
|
||||
c.modeMtx.RUnlock()
|
||||
break
|
||||
}
|
||||
|
||||
c.evictObjects(len(m))
|
||||
for i := range m {
|
||||
c.flushed.Add(m[i].addr, true)
|
||||
|
@ -115,12 +120,6 @@ func (c *cache) flush() {
|
|||
c.log.Debug("flushed items from write-cache",
|
||||
zap.Int("count", len(m)),
|
||||
zap.String("start", base58.Encode(lastKey)))
|
||||
|
||||
if len(m) > 0 {
|
||||
lastKey = append([]byte(m[len(m)-1].addr), 0)
|
||||
} else {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue