diff --git a/src/helper/billing.py b/src/helper/billing.py index 7a481e8..59d034a 100644 --- a/src/helper/billing.py +++ b/src/helper/billing.py @@ -12,6 +12,11 @@ stripe.api_key = STRIPE_SECRET_KEY +print(f"DJANGO_DEBUG={DJANGO_DEBUG}") +print(f"STRIPE_SECRET_KEY={STRIPE_SECRET_KEY}") +print(f"STRIPE_TEST_OVERRIDE={STRIPE_TEST_OVERRIDE}") + + def serialize_subscription_data(subscription_response): status = subscription_response.status current_period_start = date_utils.timestamp_as_datetime(subscription_response.current_period_start)