Skip to main content

plog

Macro plog 

Source
macro_rules! plog {
    ($($arg:tt)*) => { ... };
}
Expand description

Non-panicking println! replacement that swallows write errors (e.g. EPIPE) instead of panicking, so a broken output pipe can’t unwind the capture thread or a callback.