Skip to content

Commit ccea570

Browse files
committed
Auto merge of #77678 - jyn514:tracing, r=Mark-Simulacrum
Upgrade to tracing-subscriber 0.2.13 The primary motivation is to get the changes from tokio-rs/tracing#990. Example output: ``` $ RUSTDOC_LOG=debug rustdoc +rustc2 warning: some trace filter directives would enable traces that are disabled statically | `debug` would enable the DEBUG level for all targets = note: the static max level is `info` = help: to enable DEBUG logging, remove the `max_level_info` feature ``` r? `@Mark-Simulacrum` cc `@hawkw` ❤️
2 parents 3828489 + 8b22d07 commit ccea570

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

Cargo.lock

+5-4
Original file line numberDiff line numberDiff line change
@@ -5099,9 +5099,9 @@ dependencies = [
50995099

51005100
[[package]]
51015101
name = "tracing-core"
5102-
version = "0.1.15"
5102+
version = "0.1.17"
51035103
source = "registry+https://github.com/rust-lang/crates.io-index"
5104-
checksum = "4f0e00789804e99b20f12bc7003ca416309d28a6f495d6af58d1e2c2842461b5"
5104+
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
51055105
dependencies = [
51065106
"lazy_static",
51075107
]
@@ -5129,9 +5129,9 @@ dependencies = [
51295129

51305130
[[package]]
51315131
name = "tracing-subscriber"
5132-
version = "0.2.11"
5132+
version = "0.2.13"
51335133
source = "registry+https://github.com/rust-lang/crates.io-index"
5134-
checksum = "abd165311cc4d7a555ad11cc77a37756df836182db0d81aac908c8184c584f40"
5134+
checksum = "4ef0a5e15477aa303afbfac3a44cba9b6430fdaad52423b1e6c0dbbe28c3eedd"
51355135
dependencies = [
51365136
"ansi_term 0.12.1",
51375137
"chrono",
@@ -5144,6 +5144,7 @@ dependencies = [
51445144
"sharded-slab",
51455145
"smallvec 1.4.2",
51465146
"thread_local",
5147+
"tracing",
51475148
"tracing-core",
51485149
"tracing-log",
51495150
"tracing-serde",

compiler/rustc_driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ crate-type = ["dylib"]
1010
[dependencies]
1111
libc = "0.2"
1212
tracing = { version = "0.1.18" }
13-
tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
13+
tracing-subscriber = { version = "0.2.13", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
1414
tracing-tree = "0.1.6"
1515
rustc_middle = { path = "../rustc_middle" }
1616
rustc_ast_pretty = { path = "../rustc_ast_pretty" }

src/test/ui/issues/issue-18075.rs

-7
This file was deleted.

0 commit comments

Comments
 (0)