Merge pull request #4519 from cpuguy83/shim_exec_p_debug

shimv1: downgrade poroccess missing log to debug
This commit is contained in:
Michael Crosby 2020-09-02 10:17:21 -04:00 committed by GitHub
commit dedf423b9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -514,7 +514,7 @@ func (s *Service) checkProcesses(e runc.Exit) {
} }
s.mu.Unlock() s.mu.Unlock()
if p == nil { 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 return
} }
if ip, ok := p.(*process.Init); ok { if ip, ok := p.(*process.Init); ok {