From e28540ca90e098d6c5a84485b27d61ace4c793eb Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Fri, 9 Jun 2017 13:04:31 +0200 Subject: [PATCH] sandbox_status: Infof->Debugf response This was cluttering the logs on my clusters. The log should be just in debug mode as we do for every request/response flow. Signed-off-by: Antonio Murdaca --- server/sandbox_status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sandbox_status.go b/server/sandbox_status.go index d8e2453f..2ec89795 100644 --- a/server/sandbox_status.go +++ b/server/sandbox_status.go @@ -56,6 +56,6 @@ func (s *Server) PodSandboxStatus(ctx context.Context, req *pb.PodSandboxStatusR }, } - logrus.Infof("PodSandboxStatusResponse: %+v", resp) + logrus.Debugf("PodSandboxStatusResponse: %+v", resp) return resp, nil }