macro_rules! log_error {
($ctx:expr, $msg:expr) => { ... };
($ctx:expr, $msg:expr, $($key:ident => $value:expr),+ $(,)?) => { ... };
($ctx:expr, $fmt:expr, $($arg:tt)*) => { ... };
}Expand description
Logs a message at the ERROR level with request context.