Skip to content

Commit ef0fc13

Browse files
committed
chore: reduce data-load verbosity
1 parent 394ff1b commit ef0fc13

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

freqtrade/data/history/history_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def load_data(
9797
"""
9898
result: dict[str, DataFrame] = {}
9999
if startup_candles > 0 and timerange:
100-
logger.info(f"Using indicator startup period: {startup_candles} ...")
100+
logger.debug(f"Using indicator startup period: {startup_candles} ...")
101101

102102
data_handler = get_datahandler(datadir, data_format)
103103

tests/data/test_history.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ def test_load_partial_missing(testdatadir, caplog) -> None:
397397
# Make sure we start fresh - test missing data at start
398398
start = dt_utc(2018, 1, 1)
399399
end = dt_utc(2018, 1, 11)
400+
caplog.set_level(logging.DEBUG)
400401
data = load_data(
401402
testdatadir,
402403
"5m",

0 commit comments

Comments
 (0)