Skip to content

Commit 567557a

Browse files
ifraixedesStorj Robot
authored andcommitted
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
1 parent 2ac5d16 commit 567557a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

satellite/orders/rollups_write_cache.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ func (cache *RollupsWriteCache) flush(ctx context.Context, pendingRollups Rollup
147147
err := cache.DB.UpdateBandwidthBatch(ctx, rollups)
148148
if err != nil {
149149
mon.Event("rollups_write_cache_flush_lost")
150-
cache.log.Error("MONEY LOST! Bucket bandwidth rollup batch flush failed.", zap.Error(err))
150+
cache.log.Error("MONEY LOST! Bucket bandwidth rollup batch flush failed", zap.Error(err))
151151
}
152152
}
153153

@@ -181,7 +181,7 @@ func (cache *RollupsWriteCache) updateCacheValue(ctx context.Context, projectID
181181
data, ok := cache.pendingRollups[key]
182182
if !ok && len(cache.pendingRollups) >= cache.batchSize {
183183
mon.Event("rollups_write_cache_update_lost")
184-
cache.log.Error("MONEY LOST! Flushing too slow to keep up with demand.")
184+
cache.log.Error("MONEY LOST! Flushing too slow to keep up with demand")
185185
} else {
186186

187187
data.Allocated += allocated

0 commit comments

Comments
 (0)