added basic logging to common

TODO: improve logging
This commit is contained in:
2026-02-04 01:57:40 +00:00
parent f4933b55fb
commit dd20401ad6
+4
View File
@@ -0,0 +1,4 @@
// TODO: Use an actual logging or tracing library for pretty (scoped) output.
pub fn log(message: &str) {
println!("\x1b[32mINFO:\x1b[0m {message}");
}