1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use core::log::{Log, Logger};
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
extern "C" {
    #[wasm_bindgen(js_namespace = console, js_name = log)]
    pub fn console_log(s: &str);
}

#[wasm_bindgen]
extern "C" {
    #[wasm_bindgen(js_namespace = console, js_name = warn)]
    pub fn console_warn(s: &str);
}

#[wasm_bindgen]
extern "C" {
    #[wasm_bindgen(js_namespace = console, js_name = error)]
    pub fn console_error(s: &str);
}

pub struct WebLogger;

impl Logger for WebLogger {
    fn log(&mut self, mode: Log, message: String) {
        match mode {
            Log::Info => console_log(&format!("[{}] {}", "INFO", message)),
            Log::Warning => console_warn(&format!("[{}] {}", "WARNING", message)),
            Log::Error => console_error(&format!("[{}] {}", "ERROR", message)),
        }
    }
}