diff --git a/node-wasm/src/utils.rs b/node-wasm/src/utils.rs index a94d919a..d34c1d14 100644 --- a/node-wasm/src/utils.rs +++ b/node-wasm/src/utils.rs @@ -50,12 +50,8 @@ pub fn setup_logging() { .with_timer(UtcTime::rfc_3339()) // std::time is not available in browsers .with_writer(MakeConsoleWriter) // write events to the console .with_filter(LevelFilter::INFO); // TODO: allow customizing the log level - let perf_layer = performance_layer().with_details_from_fields(Pretty::default()); - tracing_subscriber::registry() - .with(fmt_layer) - .with(perf_layer) - .init(); + tracing_subscriber::registry().with(fmt_layer).init(); } impl From for network::Network {