[][src]Macro weblog::console_error

macro_rules! console_error {
    () => { ... };
    ($a:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr, $c:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr, $f:expr $dollar(,)?) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr, $f:expr, $g:expr $dollar(,)?) => { ... };
    ($dollar($dollar item:expr),+ $dollar(,)?) => { ... };
}

Call the browser's console.error() function.

The web-sys crate accepts any amount of arguments, all of which must implement Into<JsValue>.

See the wasm-bindgen documentation for more information.