macro_rules! jslog {
( $($x:expr ),* ) => { ... };
}
Expand description
Macro for quickly logging data to the browser’s console.log
ⓘ
use webui::jslog;
jslog!("hello {}", "world");
jslog!("A B C {} {} {}", 1, 2, 3);