diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-13T11·58+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-13T16·18+0000 |
commit | 79bfa931ed6e559cc5f9de600886d339b091e66c (patch) | |
tree | cf617b355cca430c66a8cdf4b039f944e6ad906a /tvix/tracing/Cargo.toml | |
parent | 29eda2d5b2baa61aea80e2cef3c5508278751421 (diff) |
feat(tvix/tracing): set release_max_level_debug for tracing r/8262
This allows explicitly opting in to get DEBUG-level log lines, by setting RUST_LOG. It currently also causes traces to be emitted in all cases, so we might do some runtime filtering there too, as discussed in cl/11791. Change-Id: I2865bb06a62465836d63196422f5f734f7165386 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11801 Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi> Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/tracing/Cargo.toml')
-rw-r--r-- | tvix/tracing/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/tracing/Cargo.toml b/tvix/tracing/Cargo.toml index eea6ca17711f..f65c9eba6cab 100644 --- a/tvix/tracing/Cargo.toml +++ b/tvix/tracing/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] lazy_static = "1.4.0" -tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_info"] } +tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_debug"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } indicatif = "0.17.8" tracing-indicatif = "0.3.6" |