mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Added stateinfo to WaitExit info to aid debugging daemon hangs
Signed-off-by: Darren Stahl <darst@microsoft.com>
This commit is contained in:
parent
815b2ffb41
commit
9aa9bda178
1 changed files with 2 additions and 2 deletions
|
@ -263,12 +263,12 @@ func (ctr *container) waitExit(process *process, isFirstProcessToStart bool) err
|
|||
}
|
||||
|
||||
// Call into the backend to notify it of the state change.
|
||||
logrus.Debugf("waitExit() calling backend.StateChanged %v", si)
|
||||
logrus.Debugf("waitExit() calling backend.StateChanged %+v", si)
|
||||
if err := ctr.client.backend.StateChanged(ctr.containerID, si); err != nil {
|
||||
logrus.Error(err)
|
||||
}
|
||||
|
||||
logrus.Debugln("waitExit() completed OK")
|
||||
logrus.Debugf("waitExit() completed OK, %+v", si)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue