diff --git a/internal/oci/container.go b/internal/oci/container.go index 745f895021e..a4cd533c8df 100644 --- a/internal/oci/container.go +++ b/internal/oci/container.go @@ -442,7 +442,10 @@ func (c *Container) verifyPid() error { } if startTime != c.state.InitStartTime { - return errors.New("PID running but not the original container. PID wrap may have occurred") + return errors.Errorf( + "PID %d is running but has start time of %d, whereas the saved start time is %d. PID wrap may have occurred", + c.state.InitPid, startTime, c.state.InitStartTime, + ) } return nil }