From b70d41fdba30a9e8817c316aa13758da65b7a799 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 12 Jul 2024 06:56:20 -0400 Subject: [PATCH] removed unneeded logging variables --- bot-buyer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot-buyer.py b/bot-buyer.py index b99c37e..1e27153 100755 --- a/bot-buyer.py +++ b/bot-buyer.py @@ -89,7 +89,7 @@ while True: else: logging.info("pDAI is not within range to buy yet ({}%)".format(buy_percent_diff_pdai)) else: - logging.info("pDAI is not cheaper than AFFECTION™ yet".format(buy_percent_diff_pdai)) + logging.info("pDAI is not cheaper than AFFECTION™ yet") # check if the pusdc price is cheaper than affection price if pusdc_sample_result < affection_sample_result: @@ -120,7 +120,7 @@ while True: else: logging.info("pUSDC is not within range to buy yet ({}%)".format(buy_percent_diff_pusdc)) else: - logging.info("pUSDC is not cheaper than AFFECTION™ yet".format(buy_percent_diff_pdai)) + logging.info("pUSDC is not cheaper than AFFECTION™ yet") # wait before next loop log_end_loop(loop_delay)