Skip to main content

meow_error_log

Macro meow_error_log 

Source
macro_rules! meow_error_log {
    ($tag:expr, $($arg:tt)*) => { ... };
}
Expand description

Internal error logging macro (LogLevel::Error).

Same lazy evaluation semantics as meow_flow_log, but emits at LogLevel::Error. Use it for failures with full detail — a chunk/part upload or download failed, a task failed, an HTTP error response, a signing failure — and for caught panics. For rich triage context (ids, byte range, HTTP status, attempt, sanitized URL) build the entry with the Log with_* builder methods and emit it via emit_lazy instead of this macro.

§Examples

rusty_cat::meow_error_log!("upload_part", "part {} upload failed", 3);