1 2 3 4 5 6 7 8 9 10 11
/// Logs the given `format!`-style data to the browser's console.
#[macro_export]
macro_rules! web_log {
($format_str:literal $(, $data:expr)*) => {
::web_sys::console::log_1(
&::wasm_bindgen::JsValue::from(
format!($format_str $(, $data)*)
)
);
};
}