From 55dc2d4bf431034bb4085b026efb0ecda7431bf1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 16 Mar 2025 13:07:52 +0100 Subject: [PATCH] chore: update watch reuse log message --- freqtrade/exchange/exchange.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 14b801bef..3a5974a8b 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -2441,8 +2441,8 @@ class Exchange: return self._exchange_ws.get_ohlcv(pair, timeframe, candle_type, candle_ts) logger.info( - f"Failed to reuse watch {pair}, {timeframe}, {candle_ts < last_refresh_time}," - f" {candle_ts}, {last_refresh_time}, " + f"Couldn't reuse watch for {pair}, {timeframe}, falling back to REST api. " + f"{candle_ts < last_refresh_time}, {candle_ts}, {last_refresh_time}, " f"{format_ms_time(candle_ts)}, {format_ms_time(last_refresh_time)} " )