chore: reduce data-load verbosity

This commit is contained in:
Matthias
2025-08-28 20:11:28 +02:00
parent 394ff1bbf6
commit ef0fc13235
2 changed files with 2 additions and 1 deletions

View File

@@ -97,7 +97,7 @@ def load_data(
""" """
result: dict[str, DataFrame] = {} result: dict[str, DataFrame] = {}
if startup_candles > 0 and timerange: 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) data_handler = get_datahandler(datadir, data_format)

View File

@@ -397,6 +397,7 @@ def test_load_partial_missing(testdatadir, caplog) -> None:
# Make sure we start fresh - test missing data at start # Make sure we start fresh - test missing data at start
start = dt_utc(2018, 1, 1) start = dt_utc(2018, 1, 1)
end = dt_utc(2018, 1, 11) end = dt_utc(2018, 1, 11)
caplog.set_level(logging.DEBUG)
data = load_data( data = load_data(
testdatadir, testdatadir,
"5m", "5m",