Add container/sandbox id to response debugs

Signed-off-by: Mrunal Patel <mpatel@redhat.com>
This commit is contained in:
Mrunal Patel 2017-08-17 14:27:29 -07:00
parent cab0860257
commit 908b3fcbbc
2 changed files with 6 additions and 3 deletions

View file

@ -30,6 +30,6 @@ func (s *Server) StopContainer(ctx context.Context, req *pb.StopContainerRequest
s.ContainerStateToDisk(c) s.ContainerStateToDisk(c)
resp := &pb.StopContainerResponse{} resp := &pb.StopContainerResponse{}
logrus.Debugf("StopContainerResponse: %+v", resp) logrus.Debugf("StopContainerResponse %s: %+v", c.ID(), resp)
return resp, nil return resp, nil
} }

View file

@ -34,11 +34,14 @@ func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxReque
resp := &pb.StopPodSandboxResponse{} resp := &pb.StopPodSandboxResponse{}
logrus.Warnf("could not get sandbox %s, it's probably been stopped already: %v", req.PodSandboxId, err) logrus.Warnf("could not get sandbox %s, it's probably been stopped already: %v", req.PodSandboxId, err)
logrus.Debugf("StopPodSandboxResponse %s: %+v", req.PodSandboxId, resp)
return resp, nil return resp, nil
} }
if sb.Stopped() { if sb.Stopped() {
return &pb.StopPodSandboxResponse{}, nil resp := &pb.StopPodSandboxResponse{}
logrus.Debugf("StopPodSandboxResponse %s: %+v", sb.ID(), resp)
return resp, nil
} }
podInfraContainer := sb.InfraContainer() podInfraContainer := sb.InfraContainer()
@ -116,7 +119,7 @@ func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxReque
sb.SetStopped() sb.SetStopped()
resp := &pb.StopPodSandboxResponse{} resp := &pb.StopPodSandboxResponse{}
logrus.Debugf("StopPodSandboxResponse: %+v", resp) logrus.Debugf("StopPodSandboxResponse %s: %+v", sb.ID(), resp)
return resp, nil return resp, nil
} }