From ce33b031f2e48f531b9f94916253a28b0e73ba80 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 19 Apr 2024 18:29:53 +0200 Subject: [PATCH] Show pair for task finished --- freqtrade/exchange/exchange_ws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange_ws.py b/freqtrade/exchange/exchange_ws.py index 74347d93a..4a8cd5e3e 100644 --- a/freqtrade/exchange/exchange_ws.py +++ b/freqtrade/exchange/exchange_ws.py @@ -96,7 +96,7 @@ class ExchangeWS: def _continuous_stopped(self, task: asyncio.Task, pair: str, timeframe: str): self._background_tasks.discard(task) result = task.result() - logger.info(f"Task finished {result}") + logger.info(f"{pair}, {timeframe} Task finished {result}") # self._pairs_scheduled.discard(pair, timeframe, candle_type) async def _continuously_async_watch_ohlcv(