mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-17 05:11:15 +00:00
chore: reduce data-load verbosity
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user