mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-07-07 12:16:30 +00:00
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
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m53s
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user