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 }