From 9fb99d90a374ce4d5bc06079647d94cc252f04ff Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Mon, 2 May 2022 13:17:45 +0100 Subject: [PATCH] Log platform from markets --- handler/markets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/markets.py b/handler/markets.py index 2cdc883..219288d 100644 --- a/handler/markets.py +++ b/handler/markets.py @@ -75,7 +75,7 @@ class Markets(util.Base): public_ads_filtered = [ad for ad in public_ads_filtered if ad[3] == provider] our_ads = [ad for ad in public_ads_filtered if ad[1] == username] if not our_ads: - self.log.warning(f"No ads found in public listing for {asset} {currency} {provider}") + self.log.warning(f"No ads found in {platform} public listing for {asset} {currency} {provider}") continue new_margin = self.autoprice(username, min_margin, max_margin, public_ads_filtered, currency) # self.log.info("New rate for {currency}: {rate}", currency=currency, rate=new_margin)