Skip to content

Commit 8578566

Browse files
Demote "storage cleaning happened too recently" from WARN to INFO (#270)
1 parent 3dd8f7d commit 8578566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maintain.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ func CleanStorage(ctx context.Context, storage Storage, opts CleanStorageOptions
452452
lastTLSClean := lastClean["tls"]
453453
if time.Since(lastTLSClean.Timestamp) < opts.Interval {
454454
nextTime := time.Now().Add(opts.Interval)
455-
opts.Logger.Warn("storage cleaning happened too recently; skipping for now",
455+
opts.Logger.Info("storage cleaning happened too recently; skipping for now",
456456
zap.String("instance", lastTLSClean.InstanceID),
457457
zap.Time("try_again", nextTime),
458458
zap.Duration("try_again_in", time.Until(nextTime)),

0 commit comments

Comments
 (0)