From 0b78698db9b290da8d5e79aff04d5f69c551b8be Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 26 Sep 2025 06:49:41 -0400 Subject: [PATCH] added logger --- app/api/integrations/events_service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/api/integrations/events_service.py b/app/api/integrations/events_service.py index 3c5ca22..744b3a1 100644 --- a/app/api/integrations/events_service.py +++ b/app/api/integrations/events_service.py @@ -15,6 +15,7 @@ class EventServiceIntegration: Calls the Direct Loan endpoint """ url = f"{EventServiceIntegration.EVENTS_SERVICE_BASE_URL}{EventServiceIntegration.ENDPOINT_DIRECT_LOAN}" + logger.info(f"Direct Loan URL: {url}") payload = {"transactionId": str(transaction_id)} headers = { @@ -35,6 +36,7 @@ class EventServiceIntegration: Calls the Direct Repayment endpoint """ url = f"{EventServiceIntegration.EVENTS_SERVICE_BASE_URL}{EventServiceIntegration.ENDPOINT_DIRECT_REPAYMENT}" + logger.info(f"Direct Repayment URL: {url}") payload = {"transactionId": str(transaction_id)} headers = {