zolt_macros/
lib.rs

1pub use colored;
2
3zolt_proc::msg_macros!(info, "general", "Info", cyan, print);
4zolt_proc::msg_macros!(warn, "warning", "Warning", bright_yellow, eprint);
5zolt_proc::msg_macros!(err, "error", "Error", red, eprint);
6zolt_proc::msg_macros!(debug, "debug", "Debug", green, eprint);