aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2024-01-08 09:00:13 +0100
committerRasmus Dahlberg <rasmus@rgdd.se>2024-01-08 09:00:13 +0100
commitb35235b8b15a40379b1eb2a04aa14e60f21aa8a9 (patch)
tree5afb3397274394384a7fbc83c0be55e86f4ced4a
parent4b74d842248bb249f0677fd6418ea5ec9bc50ff8 (diff)
Change notice -> debug print for shutdown notice
-rw-r--r--internal/manager/manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/manager/manager.go b/internal/manager/manager.go
index bc216c1..7d5a527 100644
--- a/internal/manager/manager.go
+++ b/internal/manager/manager.go
@@ -109,7 +109,7 @@ func (mgr *Manager) Run(ctx context.Context) error {
case <-ctx.Done():
if !shutdown {
shutdown = true
- mgr.Logger.Noticef("shutdown scheduled in %v\n", mgr.ShutdownTimeout)
+ mgr.Logger.Debugf("shutdown scheduled in %v\n", mgr.ShutdownTimeout)
// defer shutdown so that all channels can be drained
var cancel context.CancelFunc