From 65ffb21328aaa60dcceb81dc2e6957c3cf59cf20 Mon Sep 17 00:00:00 2001 From: diazjj <jjdiaz@cttc.es> Date: Fri, 26 Jul 2024 13:17:22 +0200 Subject: [PATCH] Debugging --- src/dlt/connector/client/DltGatewayClient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dlt/connector/client/DltGatewayClient.py b/src/dlt/connector/client/DltGatewayClient.py index 31ad4cca2..cde278517 100644 --- a/src/dlt/connector/client/DltGatewayClient.py +++ b/src/dlt/connector/client/DltGatewayClient.py @@ -23,6 +23,7 @@ from common.tools.grpc.Tools import grpc_message_to_json_string from dlt.connector.Config import DLT_GATEWAY_HOST, DLT_GATEWAY_PORT LOGGER = logging.getLogger(__name__) +LOGGER.setLevel(logging.DEBUG) MAX_RETRIES = 15 DELAY_FUNCTION = delay_exponential(initial=0.01, increment=2.0, maximum=5.0) RETRY_DECORATOR = retry(max_retries=MAX_RETRIES, delay_function=DELAY_FUNCTION, prepare_method_name='connect') -- GitLab