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 = {