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)