macro_rules! meow_trace_log {
($tag:expr, $($arg:tt)*) => { ... };
}Expand description
Internal trace logging macro (LogLevel::Trace).
Same lazy evaluation semantics as meow_flow_log, but emits at
LogLevel::Trace. Use it for VERY high frequency events that fire inside
hot loops — per chunk, per poll tick, per retry attempt. Consumers must not
persist these (drop or sample only).
§Examples
rusty_cat::meow_trace_log!("download_chunk", "wrote {} bytes at {}", 1024, 0);