added logging to builder trait and implemented for compiler and

assembler crates.
This commit is contained in:
2026-02-23 09:04:30 +00:00
parent a1d7b54479
commit 7ab1ac8842
11 changed files with 137 additions and 60 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
use std::path::{Path, PathBuf};
use common::{build::Builder, logging::log};
use common::{build::Builder, logging::info};
use compiler::Compiler;
fn main() {
@@ -25,7 +25,7 @@ fn main() {
std::fs::write(output_file, &result).expect("Failed to write output");
log(&format!(
info(&format!(
"Compilation Successful ✅ \n\tSource: {}\n\tOutput: {}\n",
input_file, output_file,
));