From 1e5d9ecfa3c204aa2223f894ed939e37f891af1a Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 27 Aug 2025 10:22:40 +0200 Subject: [PATCH] chore: improved logstring --- freqtrade/data/history/history_utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index e1294c261..d589dbe01 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -479,7 +479,10 @@ def _download_all_pairs_history_parallel( one_call_min_time_dt = dt_ts(date_minus_candles(timeframe, candle_limit)) # check if we can get them all in one go, if so then we can download them in parallel if since > one_call_min_time_dt: - logger.info(f"Downloading Parallel Candles for {timeframe} since {format_ms_time(since)}") + logger.info( + f"Downloading parallel candles for {timeframe} for all pairs " + f"since {format_ms_time(since)}" + ) needed_pairs: ListPairsWithTimeframes = [ (p, timeframe, CandleType.get_default(trading_mode)) for p in [p for p in pairs] ]