From 5f9d15eaac5d20b252f956bd80da94ec1b8244f5 Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Tue, 1 Sep 2020 10:31:41 -0700 Subject: [PATCH] shimv1: downgrade poroccess missing log to debug This `Info` log shows up for all exec processes that use the v1 shim with Docker because Docker deletes the process once it receives the exit event from containerd. Signed-off-by: Brian Goff --- runtime/v1/shim/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/v1/shim/service.go b/runtime/v1/shim/service.go index 6bd6aefa2..2f5a8c2f2 100644 --- a/runtime/v1/shim/service.go +++ b/runtime/v1/shim/service.go @@ -514,7 +514,7 @@ func (s *Service) checkProcesses(e runc.Exit) { } s.mu.Unlock() if p == nil { - log.G(s.context).Infof("process with id:%d wasn't found", e.Pid) + log.G(s.context).Debugf("process with id:%d wasn't found", e.Pid) return } if ip, ok := p.(*process.Init); ok {