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",