fix: compile time removal of tracing below WARN on release builds

This commit is contained in:
2023-09-10 19:42:25 -05:00
parent b3c1a30a74
commit 18eaeee19e

View File

@@ -9,6 +9,6 @@ edition = "2021"
lazy_static = "1.4.0"
sdl2 = { version = "0.35", features = ["image", "ttf", "mixer"] }
spin_sleep = "1.1.1"
tracing = "0.1.37"
tracing = { version = "0.1.37", features = ["max_level_debug", "release_max_level_warn"]}
tracing-error = "0.2.0"
tracing-subscriber = {version = "0.3.17", features = ["env-filter"]}
tracing-subscriber = {version = "0.3.17", features = ["env-filter"]}