From 5f1a42543cd84e7046c477a23fd339a76d8df624 Mon Sep 17 00:00:00 2001 From: Samuel Karp Date: Mon, 9 Jan 2023 17:50:16 -0800 Subject: [PATCH] shim: move reap log line to debug Fixes https://github.com/containerd/containerd/issues/7941 Signed-off-by: Samuel Karp --- runtime/v2/shim/shim_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/v2/shim/shim_unix.go b/runtime/v2/shim/shim_unix.go index 82d3e7eb6..90a7dbb07 100644 --- a/runtime/v2/shim/shim_unix.go +++ b/runtime/v2/shim/shim_unix.go @@ -71,7 +71,7 @@ func serveListener(path string) (net.Listener, error) { } func reap(ctx context.Context, logger *logrus.Entry, signals chan os.Signal) error { - logger.Info("starting signal loop") + logger.Debug("starting signal loop") for { select {