fix(views): add logging for MIB verification response in VerifyPaymentView 🐛
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m52s

This commit is contained in:
2025-07-05 16:44:33 +05:00
parent 09768ef2d3
commit 54056e9b7e

View File

@ -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: