Macro log_fmt
Source macro_rules! log_fmt {
($($arg:tt)*) => { ... };
}
Expand description
Format arguments into a stack buffer and log via log().
Uses a 128-byte stack buffer. Output is silently truncated if it exceeds
the buffer capacity.
§Example
ⓘove::log_fmt!("[I] count = {}\n", 42);