diff options
author | Florian Klink <flokli@flokli.de> | 2024-03-19T20·57+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-03-20T12·17+0000 |
commit | 283c3f0de4142157a8ea089d78eb11d2d439c28a (patch) | |
tree | 37d6193c693dadf8197a2f5272c7eae00f736f3c /tvix/cli | |
parent | 5627dc04e14cf4157c6159d9ca13f27bfa6683e8 (diff) |
fix(tvix): allow trace level log messages in debug builds r/7752
We had max_level_debug, not max_level_trace, so it was not possible to have `RUST_LOG` emit trace-level values (at least for our crates). release_max_level_info still controls the level for release builds, so that's not affected. Change-Id: I1f127ab63f13b1622d6616e06759a9414d9bb201 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11208 Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/cli')
-rw-r--r-- | tvix/cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/cli/Cargo.toml b/tvix/cli/Cargo.toml index bb561f198deb..d15165383b9e 100644 --- a/tvix/cli/Cargo.toml +++ b/tvix/cli/Cargo.toml @@ -20,7 +20,7 @@ dirs = "4.0.0" rustyline = "10.0.0" thiserror = "1.0.38" tokio = "1.28.0" -tracing = { version = "0.1.37", features = ["max_level_debug", "release_max_level_info"] } +tracing = { version = "0.1.37", features = ["max_level_trace", "release_max_level_info"] } tracing-subscriber = { version = "0.3.16", features = ["json"] } [dependencies.wu-manber] |