General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 2m23s

This commit is contained in:
Alex Emmet 2026-07-18 03:08:03 +02:00
commit 08aa193fd1
119 changed files with 10029 additions and 4883 deletions

View file

@ -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)]