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