From 9aa9bda1780b68946582e36892703fbb4f5f892d Mon Sep 17 00:00:00 2001 From: Darren Stahl Date: Mon, 20 Jun 2016 15:24:28 -0700 Subject: Added stateinfo to WaitExit info to aid debugging daemon hangs Signed-off-by: Darren Stahl --- libcontainerd/container_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcontainerd/container_windows.go b/libcontainerd/container_windows.go index 68a1166a5b..d91f41566d 100644 --- a/libcontainerd/container_windows.go +++ b/libcontainerd/container_windows.go @@ -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 } -- cgit v1.2.1