diff --git a/bindings/matrix-sdk-crypto-js/src/tracing.rs b/bindings/matrix-sdk-crypto-js/src/tracing.rs index dcdb07ae1..1fea6d91c 100644 --- a/bindings/matrix-sdk-crypto-js/src/tracing.rs +++ b/bindings/matrix-sdk-crypto-js/src/tracing.rs @@ -143,12 +143,6 @@ extern "C" { #[wasm_bindgen(js_namespace = console, js_name = "log")] fn log(message: String); - - #[wasm_bindgen(js_namespace = console, js_name= "group")] - fn log_group_open(label: String); - - #[wasm_bindgen(js_namespace = console, js_name= "groupEnd")] - fn log_group_close(); } #[cfg(feature = "tracing")] @@ -192,14 +186,6 @@ where } } - fn on_enter(&self, id: &Id, _: Context<'_, S>) { - log_group_open(format!("t{:x}", id.into_u64())); - } - - fn on_exit(&self, _: &Id, _: Context<'_, S>) { - log_group_close(); - } - fn on_event(&self, event: &Event<'_>, _: Context<'_, S>) { let mut recorder = StringVisitor::new(); event.record(&mut recorder);