1 2 3 4 5 6 7
#[allow(unused_macros)] macro_rules! console_log { ($($tt:tt)*) => { #[cfg(debug_assertions)] gloo::console::log!($($tt)*); }; }