Skip to content

Commit 0be66d7

Browse files
committed
just max_level_info
1 parent 56f5c7f commit 0be66d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/rustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ features = ['unprefixed_malloc_on_supported_platforms']
1919
[features]
2020
jemalloc = ['jemalloc-sys']
2121
llvm = ['rustc_driver/llvm']
22-
release_max_level_info = ['rustc_driver/release_max_level_info']
22+
max_level_info = ['rustc_driver/max_level_info']

compiler/rustc_driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"]
3838

3939
[features]
4040
llvm = ['rustc_interface/llvm']
41-
release_max_level_info = ['tracing/release_max_level_info', 'tracing/max_level_info']
41+
max_level_info = ['tracing/max_level_info']

src/bootstrap/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ impl Build {
548548
// if its unset, if debug_assertions is on, then debug_logging will also be on
549549
// as well as tracing *ignoring* this feature when debug_assertions is on
550550
if !self.config.rust_debug_logging {
551-
features.push_str(" release_max_level_info");
551+
features.push_str(" max_level_info");
552552
}
553553

554554
features

0 commit comments

Comments
 (0)