From de555e3423d7769c1dc50496e8360f2ed28dfa46 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Thu, 12 May 2022 10:17:37 -0600 Subject: [PATCH] Enable logging of rpc crate trace events when no subscriber is present This allows these events to be logged in the Zed client (until we setup tracing there). Co-Authored-By: Antonio Scandurra Co-Authored-By: Max Brunsfeld --- crates/rpc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rpc/Cargo.toml b/crates/rpc/Cargo.toml index ce24ede4ee..da01816931 100644 --- a/crates/rpc/Cargo.toml +++ b/crates/rpc/Cargo.toml @@ -27,7 +27,7 @@ rand = "0.8" rsa = "0.4" serde = { version = "1", features = ["derive"] } smol-timeout = "0.6" -tracing = "0.1.34" +tracing = { version = "0.1.34", features = ["log"] } zstd = "0.9" [build-dependencies]