From bd4b3a8567dec5af9da491e782df6b262dfb4a10 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 22 Apr 2023 18:49:56 +0100 Subject: [PATCH] Add more debug statements --- core/clients/platform.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/clients/platform.py b/core/clients/platform.py index 32c0cd5..1282731 100644 --- a/core/clients/platform.py +++ b/core/clients/platform.py @@ -648,6 +648,7 @@ class LocalPlatformClient(ABC): if (asset, countrycode, currency, provider) not in our_ads: print("NOT IN OUR ADS", asset, countrycode, currency, provider) if currency not in supported_currencies: + print("CURRENCY", currency, "NOT IN", supported_currencies) continue # Create the actual ad and pass in all the stuff if not settings.DUMMY: @@ -659,6 +660,7 @@ class LocalPlatformClient(ABC): payment_details=account_info[currency], ad=ad, ) + print("REAL CREATE AD RETURN", rtrn) else: log.debug( f"DUMMY: create_ad({asset}, {countrycode}, {currency}, "