refactor: now uses log for everything and changed serial.log to vm_root.log

This commit is contained in:
robcholz
2026-02-07 17:47:29 -05:00
parent 402f37bae4
commit df08e45fae
4 changed files with 68 additions and 42 deletions
+1 -1
View File
@@ -279,6 +279,6 @@ fn validate_or_exit(config: &Config) {
}
fn die(message: &str) -> ! {
eprintln!("[vibebox] {message}");
tracing::error!("{message}");
std::process::exit(1);
}