Macro debug_log

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

This emits the same as log!, but is intended for local debugging and is linted against to not pass CI. Use for local development when you just need debug prints.