chore: update watch reuse log message

This commit is contained in:
Matthias
2025-03-16 13:07:52 +01:00
parent 2a6dc3e45d
commit 55dc2d4bf4

View File

@@ -2441,8 +2441,8 @@ class Exchange:
return self._exchange_ws.get_ohlcv(pair, timeframe, candle_type, candle_ts) return self._exchange_ws.get_ohlcv(pair, timeframe, candle_type, candle_ts)
logger.info( logger.info(
f"Failed to reuse watch {pair}, {timeframe}, {candle_ts < last_refresh_time}," f"Couldn't reuse watch for {pair}, {timeframe}, falling back to REST api. "
f" {candle_ts}, {last_refresh_time}, " f"{candle_ts < last_refresh_time}, {candle_ts}, {last_refresh_time}, "
f"{format_ms_time(candle_ts)}, {format_ms_time(last_refresh_time)} " f"{format_ms_time(candle_ts)}, {format_ms_time(last_refresh_time)} "
) )