macro_rules! log { ($level:expr, $($arg:tt)*) => { ... }; }
Logs a message at the specified level.
This is the base logging macro.
log!(LogLevel::INFO, "Server started on port {}", 8080);