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 <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-06-09 13:04:31 +02:00
parent 952ae0db1c
commit e28540ca90
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

@ -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
}