Skip to content
Snippets Groups Projects

Restructure log location

Merged Ashwin Kumar Karnad requested to merge restructure-log-location into main
2 files
+ 11
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -671,7 +671,11 @@ def install_environment(
@@ -671,7 +671,11 @@ def install_environment(
_, build_log_file_name = create_log_file_names(
_, build_log_file_name = create_log_file_names(
mpsd_release, mpsd_microarch, "install", toolchain=toolchain
mpsd_release, mpsd_microarch, "install", toolchain=toolchain
)
)
build_log_file = release_base_dir / "logs" / build_log_file_name
build_log_folder = release_base_dir / "logs"
 
build_log_file = build_log_folder / build_log_file_name
 
# if logs folder dosent exist, create it
 
if not os.path.exists(build_log_folder):
 
os.makedirs(build_log_folder)
logging.info(f"Installing toolchain {toolchain} to {toolchain_dir}")
logging.info(f"Installing toolchain {toolchain} to {toolchain_dir}")
Loading