From e85d6054545037c5d5f1ab159d726f3f3fb2caab Mon Sep 17 00:00:00 2001 From: i701 Date: Sat, 5 Jul 2025 15:54:24 +0500 Subject: [PATCH] =?UTF-8?q?fix(views):=20correct=20logging=20of=20topup=20?= =?UTF-8?q?payment=20verification=20time=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- billing/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)