From 7d5f035d590d41a33dbad5b36fdcca8f16367053 Mon Sep 17 00:00:00 2001 From: "mark.lin" Date: Tue, 6 Aug 2019 10:14:25 +0800 Subject: [PATCH] health: remove annoying health check logs --- health/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/health/server.go b/health/server.go index 6bbd069c..39357325 100644 --- a/health/server.go +++ b/health/server.go @@ -59,7 +59,6 @@ func (s *server) Liveness(ctx context.Context, req *EmptyRequest) (*EmptyRespons // Readiness is represented that whether application is ready to start accepting traffic or not. func (s *server) Readiness(ctx context.Context, req *EmptyRequest) (*EmptyResponse, error) { if err := checkHealth(ctx, s.checkFns); err != nil { - log.Error("Failed to check readiness", "err", err) return nil, status.Error(codes.Unavailable, err.Error()) } return nil, nil