Files
tuono/crates/tuono_internal/src/tuono_println.rs
T
2025-04-09 08:49:01 +02:00

12 lines
347 B
Rust

#[macro_export]
/// Log a message in the terminal using the custom tuono formatter.
/// The messages printed with this macro should inform or
/// guide the user.
///
/// The debug/error messages should be printed using the `tracing` crate
macro_rules! tuono_println {
($($arg:tt)*) => {{
println!(" {}", format!($($arg)*));
}};
}