macro_rules! debug_log {
($($t:tt)*) => { ... };
}Expand description
Cross-platform debug logging macro. Prints natively to console.log in WASM environments, and falls back to println! elsewhere.
macro_rules! debug_log {
($($t:tt)*) => { ... };
}Cross-platform debug logging macro. Prints natively to console.log in WASM environments, and falls back to println! elsewhere.