From e28e2ebf0f5f036b747a5f845407a25667eab463 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Tue, 31 Mar 2026 15:12:26 +0200 Subject: [PATCH] chore(supervisor): InfoContext to DebugContext --- pkg/gotenberg/supervisor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/gotenberg/supervisor.go b/pkg/gotenberg/supervisor.go index 9f15dfb5..73a7f8d7 100644 --- a/pkg/gotenberg/supervisor.go +++ b/pkg/gotenberg/supervisor.go @@ -333,7 +333,7 @@ func (s *processSupervisor) maybeIdleShutdown() { return } - s.logger.InfoContext(context.Background(), "idle shutdown timeout reached, stopping process") + s.logger.DebugContext(context.Background(), "idle shutdown timeout reached, stopping process") // Stop the ticker — it will be restarted on the next Launch(). s.stopIdleTicker() @@ -350,7 +350,7 @@ func (s *processSupervisor) maybeIdleShutdown() { s.firstStartErr = nil s.reqCounter.Store(0) - s.logger.InfoContext(context.Background(), "process stopped due to idle timeout") + s.logger.DebugContext(context.Background(), "process stopped due to idle timeout") } // acquireSlot attempts to acquire a semaphore slot, yielding it back if a