[][src]Macro weblog::console_warn

macro_rules! console_warn {
    () => { ... };
    ($a:expr) => { ... };
    ($a:expr, $b:expr) => { ... };
    ($a:expr, $b:expr, $c:expr) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr, $f:expr) => { ... };
    ($a:expr, $b:expr, $c:expr, $d:expr, $e:expr, $f:expr, $g:expr) => { ... };
}

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

The web-sys crate accepts up to a maximum of seven arguments, all of which must implement Into<JsValue>.

See the wasm-bindgen documentation for more information.