satellite/orders: Remove period logs messages

Remove the final period of two log messages to be consistent with the
other logs messages.

Change-Id: I9253a4d5fb293c95d3baf8e093dc5744387c1516
This commit is contained in:
Ivan Fraixedes 2022-11-21 13:41:10 +01:00 committed by Storj Robot
parent 2ac5d16faf
commit 567557abc3

View File

@ -147,7 +147,7 @@ func (cache *RollupsWriteCache) flush(ctx context.Context, pendingRollups Rollup
err := cache.DB.UpdateBandwidthBatch(ctx, rollups)
if err != nil {
mon.Event("rollups_write_cache_flush_lost")
cache.log.Error("MONEY LOST! Bucket bandwidth rollup batch flush failed.", zap.Error(err))
cache.log.Error("MONEY LOST! Bucket bandwidth rollup batch flush failed", zap.Error(err))
}
}
@ -181,7 +181,7 @@ func (cache *RollupsWriteCache) updateCacheValue(ctx context.Context, projectID
data, ok := cache.pendingRollups[key]
if !ok && len(cache.pendingRollups) >= cache.batchSize {
mon.Event("rollups_write_cache_update_lost")
cache.log.Error("MONEY LOST! Flushing too slow to keep up with demand.")
cache.log.Error("MONEY LOST! Flushing too slow to keep up with demand")
} else {
data.Allocated += allocated