General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 2m23s
Some checks failed
CI / checks (push) Failing after 2m23s
This commit is contained in:
parent
5f11d476b6
commit
08aa193fd1
119 changed files with 10029 additions and 4883 deletions
|
|
@ -1,5 +1,16 @@
|
|||
use wasm_bindgen::prelude::*;
|
||||
|
||||
#[cfg(not(test))]
|
||||
pub(crate) fn init_tracing() {
|
||||
use tracing::Level;
|
||||
use wasm_tracing::prelude::WasmLayerConfig;
|
||||
|
||||
let config = WasmLayerConfig::new()
|
||||
.set_max_level(Level::DEBUG)
|
||||
.to_owned();
|
||||
let _ = wasm_tracing::set_as_global_default_with_config(config);
|
||||
}
|
||||
|
||||
/// Log severity used by the public SDK when translating raw WASM events.
|
||||
#[wasm_bindgen]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue