diff --git a/billing/views.py b/billing/views.py index 435ed68..a32a2e1 100644 --- a/billing/views.py +++ b/billing/views.py @@ -386,7 +386,7 @@ class VerifyTopupPaymentAPIView(StaffEditorPermissionMixin, generics.UpdateAPIVi "time": localtime(topup_instance.created_at).strftime("%Y-%m-%d %H:%M"), } 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) print("Topup verification response:", topup_verification_response)