fix(harness): disable tracing events (#961)

This commit is contained in:
dan
2025-08-15 10:13:12 +03:00
committed by GitHub
parent 9f849e7c18
commit cb804a6025
2 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@@ -6126,6 +6126,7 @@ dependencies = [
"tlsn-wasm",
"tokio",
"tokio-util",
"tracing",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-spawn",

View File

@@ -33,6 +33,8 @@ tokio = { workspace = true, features = ["full"] }
tokio-util = { workspace = true, features = ["compat"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
# Disable tracing events as a workaround for issue 959.
tracing = { workspace = true, features = ["release_max_level_off"] }
wasm-bindgen = { workspace = true }
tlsn-wasm = { workspace = true }
js-sys = { workspace = true }