From e5e749aa3a7813f28eb1d26fbe6dc60612446f56 Mon Sep 17 00:00:00 2001 From: nefrathenrici Date: Mon, 29 Jan 2024 11:19:05 -0800 Subject: [PATCH] Allow unlogged parameters in TOML files --- src/solver/type_getters.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/solver/type_getters.jl b/src/solver/type_getters.jl index 355353dd85..251457482d 100644 --- a/src/solver/type_getters.jl +++ b/src/solver/type_getters.jl @@ -773,12 +773,13 @@ function get_simulation(config::AtmosConfig) end # Check that all set parameters have been used + # Strict logging temporarily disabled for compatibility with CloudMicrophysics overrides param_filepath = joinpath(sim_info.output_dir, "$(sim_info.job_id)_parameters.toml") CP.log_parameter_information( config.toml_dict, param_filepath, - strict = true, + # strict = true, ) initial_condition = get_initial_condition(config.parsed_args)