From 54056e9b7e611dbdf53c2ece0973e124055f3ad8 Mon Sep 17 00:00:00 2001 From: i701 Date: Sat, 5 Jul 2025 16:44:33 +0500 Subject: [PATCH] =?UTF-8?q?fix(views):=20add=20logging=20for=20MIB=20verif?= =?UTF-8?q?ication=20response=20in=20VerifyPaymentView=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- billing/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/billing/views.py b/billing/views.py index 53ebea7..cc7af32 100644 --- a/billing/views.py +++ b/billing/views.py @@ -225,6 +225,7 @@ class VerifyPaymentView(StaffEditorPermissionMixin, generics.UpdateAPIView): json=data, headers={"Content-Type": "application/json"}, ) + logger.info("MIB Verification Response -> ", response) try: response.raise_for_status() except requests.exceptions.HTTPError as e: