From 8f16ffcc2cb311a8f68456a6ddd3d062847c645b Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Sun, 18 Feb 2024 19:21:02 -0500 Subject: [PATCH] Demote "storage cleaning happened too recently" from WARN to INFO --- maintain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintain.go b/maintain.go index 9ffb7310..a609b636 100644 --- a/maintain.go +++ b/maintain.go @@ -452,7 +452,7 @@ func CleanStorage(ctx context.Context, storage Storage, opts CleanStorageOptions lastTLSClean := lastClean["tls"] if time.Since(lastTLSClean.Timestamp) < opts.Interval { nextTime := time.Now().Add(opts.Interval) - opts.Logger.Warn("storage cleaning happened too recently; skipping for now", + opts.Logger.Info("storage cleaning happened too recently; skipping for now", zap.String("instance", lastTLSClean.InstanceID), zap.Time("try_again", nextTime), zap.Duration("try_again_in", time.Until(nextTime)),