Skip to content

Commit 5f9d15e

Browse files
committed
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 <[email protected]>
1 parent efa0e80 commit 5f9d15e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime/v1/shim/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ func (s *Service) checkProcesses(e runc.Exit) {
514514
}
515515
s.mu.Unlock()
516516
if p == nil {
517-
log.G(s.context).Infof("process with id:%d wasn't found", e.Pid)
517+
log.G(s.context).Debugf("process with id:%d wasn't found", e.Pid)
518518
return
519519
}
520520
if ip, ok := p.(*process.Init); ok {

0 commit comments

Comments
 (0)