Macro respo::log

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

wraps on top of web_sys::console.log_1, use it like:

util::log!("a is {}", a);