From 53dcb5d5ed1dd1dc741e9cf3f6d0b49f90e55029 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 3 Mar 2020 19:36:03 +0100 Subject: [PATCH] Fix logging expression --- freqtrade/freqtradebot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 04e3dd72f..920c9203e 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -685,7 +685,8 @@ class FreqtradeBot: order_book_max=order_book_max) for i in range(order_book_min, order_book_max + 1): sell_rate = next(order_book) - logger.debug(' order book asks top %s: %0.8f', i, sell_rate) + logger.debug(f" order book {config_ask_strategy['price_side']} top {i}: " + f"{sell_rate:0.8f}") if self._check_and_execute_sell(trade, sell_rate, buy, sell): return True