Skip to content

Commit 5a2b3d9

Browse files
committed
chore: show the actually used value
1 parent 8641796 commit 5a2b3d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/configuration/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def _process_optimize_options(self, config: Config) -> None:
345345
config.update({"early_stop": self.args["early_stop"]})
346346
logger.info(
347347
f"Parameter --early-stop detected ... Will early stop hyperopt if no improvement "
348-
f"after {self.args.get('early_stop')} epochs ..."
348+
f"after {config.get('early_stop')} epochs ..."
349349
)
350350

351351
configurations = [

0 commit comments

Comments
 (0)