summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2024-08-23 11:15:10 +0900
committerGitHub <noreply@github.com>2024-08-22 19:15:10 -0700
commitd54d29662f30c0fa5e1f048fdce4835e51248682 (patch)
tree146cbfa0b40f034b7ed2cb14c5745880439bac6c /cli/Cargo.toml
parent86a42c811488a1167c736ba0d18a852035503dec (diff)
chore: enable `log` feature for tracing crate (#25078)
This commit enables the `log` feature for the `tracing` crate. This allows us to examine additional detailed logs emitted by third party crates that use `tracing` crate for logging by setting `RUST_LOG` env var or passing `-L` option in command line. Closes #25045
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 5055b3197..6034145a6 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -156,6 +156,7 @@ thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tower-lsp.workspace = true
+tracing = { version = "0.1", features = ["log", "default"] }
twox-hash.workspace = true
typed-arena = "=2.0.2"
uuid = { workspace = true, features = ["serde"] }