From 253add1cc6f3a4c84fe46862998912e40d8dafa1 Mon Sep 17 00:00:00 2001 From: Alexandre Seo Date: Thu, 23 Oct 2025 19:39:53 -0700 Subject: [PATCH] feat: expose tracing/release_max_level_off feature --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 583149d..b7f24a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ atomic-wait = "1.1.0" crossbeam-queue = "0.3.12" crossbeam-utils = "0.8.21" shuttle = { version = "0.8.0", optional = true } -tracing = { version = "0.1.41", features = ["release_max_level_off"] } +tracing = "0.1.41" tracing-subscriber = "0.3.19" [dev-dependencies] @@ -30,7 +30,9 @@ bevy_tasks = { version = "0.16.1", features = [ "multi_threaded" ] } criterion = { version = "0.5" } [features] +default = ["tracing_max_level_off"] shuttle = ["dep:shuttle"] +tracing_max_level_off = ["tracing/release_max_level_off"] [profile.release] debug = true