From 37ce4f588cf492e9440fc5e9806481c8ecf327a1 Mon Sep 17 00:00:00 2001 From: Jorres Tarasov Date: Wed, 29 Jan 2025 14:51:46 +0100 Subject: [PATCH] fix: remove logging debug --- pkg/rolling/restart_handler.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/rolling/restart_handler.go b/pkg/rolling/restart_handler.go index 0ab5a08..0562624 100644 --- a/pkg/rolling/restart_handler.go +++ b/pkg/rolling/restart_handler.go @@ -77,10 +77,8 @@ func (rh *restartHandler) run() { select { case <-rh.done: - rh.logger.Debug("received from rh.done") return case <-time.After(rh.delayBetweenRestarts): - rh.logger.Debugf("successfully waited for %s", rh.delayBetweenRestarts.String()) continue } }