diff --git a/python/feast_spark/job_service.py b/python/feast_spark/job_service.py index 4e0080b..73582af 100644 --- a/python/feast_spark/job_service.py +++ b/python/feast_spark/job_service.py @@ -427,7 +427,7 @@ def Check(self, request, context): class LoggingInterceptor(grpc.ServerInterceptor): def intercept_service(self, continuation, handler_call_details): if handler_call_details.method != "/grpc.health.v1.Health/Check": - logger.info(handler_call_details) + logger.debug(handler_call_details) return continuation(handler_call_details)