From 642f24eba5f8487ff44e678bde3d2214339ebf0e Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 15 Oct 2025 19:31:10 +0200 Subject: [PATCH] chore: fix odd debug message wording --- freqtrade/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/misc.py b/freqtrade/misc.py index a6dbed85e..e9dba5856 100644 --- a/freqtrade/misc.py +++ b/freqtrade/misc.py @@ -51,7 +51,7 @@ def file_dump_json(filename: Path, data: Any, is_zip: bool = False, log: bool = with filename.open("w") as fp: dump_json_to_file(fp, data) - logger.debug(f'done json to "{filename}"') + logger.debug(f'done writing json to "{filename}"') def json_load(datafile: TextIO) -> Any: