Skip to content

Commit

Permalink
EverestRunModel: merge log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
verveerpj committed Dec 20, 2024
1 parent ec695dd commit 81c4b8f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/ert/run_models/everest_run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,9 @@ def __init__(

assert everest_config.environment is not None
logging.getLogger(EVEREST).info(
"Using random seed: %d", everest_config.environment.random_seed
)
logging.getLogger(EVEREST).info(
"To deterministically reproduce this experiment, "
"add the above random seed to your configuration file."
"Using random seed: %d. To deterministically reproduce this experiment, "
"add the above random seed to your configuration file.",
everest_config.environment.random_seed,
)

self._everest_config = everest_config
Expand Down

0 comments on commit 81c4b8f

Please sign in to comment.