macro_rules! error {
(target: $target:expr, $($arg:tt)*) => { ... };
($($arg:tt)*) => { ... };
}
Expand description
Logs a message at the error level.
Logging at this level is disabled if the max_level_off
feature is present.
macro_rules! error {
(target: $target:expr, $($arg:tt)*) => { ... };
($($arg:tt)*) => { ... };
}
Logs a message at the error level.
Logging at this level is disabled if the max_level_off
feature is present.