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.
macro_rules! plog {
($($arg:tt)*) => { ... };
}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.