We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 833927b commit a50dcb9Copy full SHA for a50dcb9
cmd/epp/health.go
@@ -34,7 +34,7 @@ type healthServer struct {
34
35
func (s *healthServer) Check(ctx context.Context, in *healthPb.HealthCheckRequest) (*healthPb.HealthCheckResponse, error) {
36
if !s.datastore.PoolHasSynced() {
37
- s.logger.V(logutil.TRACE).Info("gRPC health check not serving", "service", in.Service)
+ s.logger.V(logutil.DEFAULT).Info("gRPC health check not serving", "service", in.Service)
38
return &healthPb.HealthCheckResponse{Status: healthPb.HealthCheckResponse_NOT_SERVING}, nil
39
}
40
s.logger.V(logutil.TRACE).Info("gRPC health check serving", "service", in.Service)
0 commit comments