From ab2e0e6d6f1dbd9fb775d6c1ea151b42b7ad290b Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 27 Jan 2026 07:19:45 +0100 Subject: [PATCH] chore: improved logging for clarity on startup wait --- freqtrade/util/migrations/migrate_wallet_history.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/freqtrade/util/migrations/migrate_wallet_history.py b/freqtrade/util/migrations/migrate_wallet_history.py index ec0776e4d..b8cc5cfda 100644 --- a/freqtrade/util/migrations/migrate_wallet_history.py +++ b/freqtrade/util/migrations/migrate_wallet_history.py @@ -49,12 +49,16 @@ def _migrate_wallet_history(config: Config, exchange: Exchange, starting_balance ) pairlist_valid = [p for p in pairlist if p in exchange.markets] + logger.info("Wallet History migration: Fetching OHLCV data ...") data = exchange.refresh_latest_ohlcv( [(p, timeframe, config["candle_type_def"]) for p in pairlist_valid], since_ms=dt_ts(min_date), cache=False, drop_incomplete=False, ) + logger.info( + "Wallet History migration: Done fetching OHLCV data for wallet history migration..." + ) dfs = [] # Combine all dataframes into one using the open rate