From d8ff8f293b011a13f69fab592e7d9b9bccf9d81c Mon Sep 17 00:00:00 2001 From: Marius Robert Macamete Date: Fri, 19 Dec 2025 14:15:42 +0200 Subject: [PATCH] add logs --- UI_V2/helpers/netopia.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UI_V2/helpers/netopia.py b/UI_V2/helpers/netopia.py index d2c5106..601588b 100644 --- a/UI_V2/helpers/netopia.py +++ b/UI_V2/helpers/netopia.py @@ -284,6 +284,10 @@ def start_card_payment( def verify_ipn(request_obj: Any, settings: Optional[NetopiaSettings] = None) -> Dict[str, Any]: """Verify an IPN payload coming from NETOPIA using the full request object.""" svc = _build_payment_service(settings) + + print('request_obj = ', request_obj) + print('svc = ', svc) + print('settings', settings) return svc.verify_ipn(request_obj)