Fixes logging of target names with dashes (#7281)

* Fixes logging of target names with dashes

There was a bug in tracing-core which resulted in not supporting dashes
in target names. This was fixed upstream. Besides that a test was added
to ensure that we don't break this again.

* Extend test
This commit is contained in:
Bastian Köcher
2020-10-08 20:40:27 +02:00
committed by GitHub
parent 443725f0f6
commit db8a0cafa9
6 changed files with 59 additions and 25 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ log = { version = "0.4.8", optional = true }
futures = { version = "0.3.1", features = ["thread-pool"], optional = true }
parking_lot = { version = "0.10.0", optional = true }
tracing = { version = "0.1.19", default-features = false }
tracing-core = { version = "0.1.15", default-features = false}
tracing-core = { version = "0.1.17", default-features = false}
[features]
default = ["std"]