removed unneeded logging variables

This commit is contained in:
Alexander 2024-07-12 06:56:20 -04:00
parent e9db8565cc
commit b70d41fdba

View file

@ -89,7 +89,7 @@ while True:
else: else:
logging.info("pDAI is not within range to buy yet ({}%)".format(buy_percent_diff_pdai)) logging.info("pDAI is not within range to buy yet ({}%)".format(buy_percent_diff_pdai))
else: 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 # check if the pusdc price is cheaper than affection price
if pusdc_sample_result < affection_sample_result: if pusdc_sample_result < affection_sample_result:
@ -120,7 +120,7 @@ while True:
else: else:
logging.info("pUSDC is not within range to buy yet ({}%)".format(buy_percent_diff_pusdc)) logging.info("pUSDC is not within range to buy yet ({}%)".format(buy_percent_diff_pusdc))
else: 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 # wait before next loop
log_end_loop(loop_delay) log_end_loop(loop_delay)