no_stdout

Macro dprintln

Source
macro_rules! dprintln {
    () => { ... };
    ($s:expr) => { ... };
    ($s:expr, $($tt:tt)*) => { ... };
    (@newline) => { ... };
}
Expand description

Macro for printing to the configured stdout, with a newline.

This method prints only if the dprint feature enabled, which is useful for debugging purposes.