From 41e993a3d9d18f3930abeb0d1386d2bd0d7dc39d Mon Sep 17 00:00:00 2001 From: PCoder Date: Wed, 23 Dec 2020 16:34:26 +0530 Subject: [PATCH] Log variable value --- datacenterlight/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacenterlight/views.py b/datacenterlight/views.py index 6ce1562b..fac5f6fe 100644 --- a/datacenterlight/views.py +++ b/datacenterlight/views.py @@ -965,7 +965,7 @@ class OrderConfirmationView(DetailView, FormView): # TODO: requires_attention is probably wrong value to compare if (pi.status == 'requires_attention' or pi.status == 'requires_source_action'): - logger.debug("Display SCA authentication") + logger.debug("Display SCA authentication %s " % pi.status) context = { 'sid': stripe_subscription_obj.id, 'payment_intent_secret': pi.client_secret,