Skip to content
Snippets Groups Projects
Commit 19314140 authored by Ashwin Kumar Karnad's avatar Ashwin Kumar Karnad
Browse files

log software version when init

parent c7d28328
No related branches found
No related tags found
1 merge request!115Resolve "declutter the top level log file"
Pipeline #382788 failed
......@@ -1232,9 +1232,11 @@ def initialise_environment(root_dir: Path) -> None:
# create the log file and fill it with the headers
record_script_execution_summary(root_dir=root_dir)
# record the msg in the log file
init_log_msg = f"Initialising MPSD software instance at {root_dir}.\n"
init_log_msg += "MPSD Software manager version: {__version__}\n"
write_to_cmd_log(
root_dir=root_dir,
msg=f"Initialising MPSD software instance at {root_dir}.\n",
msg=init_log_msg,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment