fix(views): correct logging of topup payment verification time 🐛
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m53s

This commit is contained in:
2025-07-05 15:54:24 +05:00
parent 683cfe76f1
commit e85d605454

View File

@ -386,7 +386,7 @@ class VerifyTopupPaymentAPIView(StaffEditorPermissionMixin, generics.UpdateAPIVi
"time": localtime(topup_instance.created_at).strftime("%Y-%m-%d %H:%M"), "time": localtime(topup_instance.created_at).strftime("%Y-%m-%d %H:%M"),
} }
logger.info( logger.info(
f"Verifying topup payment created at {topup_instance.created_at} with data: {data}" f"Verifying topup payment created at {localtime(topup_instance.created_at)} with data: {data}"
) )
topup_verification_response = self.verify_transfer_topup(data, topup_instance) topup_verification_response = self.verify_transfer_topup(data, topup_instance)
print("Topup verification response:", topup_verification_response) print("Topup verification response:", topup_verification_response)