Macro loggy::todox

source ·
macro_rules! todox {
    ( $( $arg:tt )* ) => { ... };
}
Expand description

Log a debugging message that must be removed from the code once some debugging task is complete.

This is identical to invoking debug!(...). Renaming it todox! ensures all uses will be reported by cargo todox, to ensure their removal once their usefulness is past.