From 15ab92063058d135537e35e50eb3825108bf6266 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 27 Dec 2023 16:04:05 -0800 Subject: [PATCH] Add warning log to troubleshoot GHA failure --- neon_api_proxy/controller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neon_api_proxy/controller.py b/neon_api_proxy/controller.py index 7cb373e..732a50a 100644 --- a/neon_api_proxy/controller.py +++ b/neon_api_proxy/controller.py @@ -91,6 +91,7 @@ def init_service_instances(self, service_class_mapping: dict) -> dict: try: service_mapping[item] = \ service_class_mapping[item](api_key=api_key) + LOG.warning(f"Initialized with key={api_key}") except Exception as e: LOG.error(e) return service_mapping