mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
12 lines
347 B
Rust
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)*));
|
|
}};
|
|
}
|