From fcaee33706b795927a672481189cbb3387c88994 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 25 Dec 2022 20:11:43 +0100 Subject: [PATCH] Improve log msg --- freqtrade/exchange/exchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 41882674c..47bd1bdb6 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -2253,7 +2253,7 @@ class Exchange: candle_date = int(timeframe_to_prev_date(timeframe).timestamp()) candles = self._exchange_ws.ccxt_object.ohlcvs.get(pair, {}).get(timeframe) x = self._exchange_ws.klines_last_refresh.get((pair, timeframe, candle_type), 0) - logger.info(f"{candle_date < x}, {candle_date}, {x}") + logger.info(f"{pair}, {candle_date < x}, {candle_date}, {x}") if candles and candles[-1][0] > min_date and candle_date < x: # Usable result ... logger.info(f"reuse watch result for {pair}, {timeframe}, {x}")