From ef0fc132358aedc9d34688abd5826ea1c860ae71 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 28 Aug 2025 20:11:28 +0200 Subject: [PATCH] chore: reduce data-load verbosity --- freqtrade/data/history/history_utils.py | 2 +- tests/data/test_history.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index 9fd254057..9cb14e3e0 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -97,7 +97,7 @@ def load_data( """ result: dict[str, DataFrame] = {} if startup_candles > 0 and timerange: - logger.info(f"Using indicator startup period: {startup_candles} ...") + logger.debug(f"Using indicator startup period: {startup_candles} ...") data_handler = get_datahandler(datadir, data_format) diff --git a/tests/data/test_history.py b/tests/data/test_history.py index e9af7b226..5554e04b3 100644 --- a/tests/data/test_history.py +++ b/tests/data/test_history.py @@ -397,6 +397,7 @@ def test_load_partial_missing(testdatadir, caplog) -> None: # Make sure we start fresh - test missing data at start start = dt_utc(2018, 1, 1) end = dt_utc(2018, 1, 11) + caplog.set_level(logging.DEBUG) data = load_data( testdatadir, "5m",