From 9f1256aca45e8264dd8586782f446b316335511d Mon Sep 17 00:00:00 2001 From: Khor Shu Heng Date: Wed, 4 May 2022 15:36:29 +0800 Subject: [PATCH] Set handler call logging level to debug Signed-off-by: Khor Shu Heng --- python/feast_spark/job_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/feast_spark/job_service.py b/python/feast_spark/job_service.py index 4e0080be..73582af5 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)