macro_rules! error { ($($arg:tt)*) => { ... }; }
Logs a message at the ERROR level. The message is formatted using standard Rust formatting.
use loggit::error; error!("Error occurred: {}", "example error");