about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/Cargo.nix4
-rw-r--r--tvix/cli/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix
index d3272843c2..08caa2e7c4 100644
--- a/tvix/Cargo.nix
+++ b/tvix/Cargo.nix
@@ -11601,7 +11601,7 @@ rec {
           "tracing-attributes" = [ "dep:tracing-attributes" ];
           "valuable" = [ "tracing-core/valuable" ];
         };
-        resolvedDefaultFeatures = [ "attributes" "default" "log" "max_level_debug" "release_max_level_info" "std" "tracing-attributes" ];
+        resolvedDefaultFeatures = [ "attributes" "default" "log" "max_level_trace" "release_max_level_info" "std" "tracing-attributes" ];
       };
       "tracing-attributes" = rec {
         crateName = "tracing-attributes";
@@ -12301,7 +12301,7 @@ rec {
           {
             name = "tracing";
             packageId = "tracing";
-            features = [ "max_level_debug" "release_max_level_info" ];
+            features = [ "max_level_trace" "release_max_level_info" ];
           }
           {
             name = "tracing-subscriber";
diff --git a/tvix/cli/Cargo.toml b/tvix/cli/Cargo.toml
index bb561f198d..d15165383b 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]