Skip to content

Commit bfbfb84

Browse files
committed
remove debug-logging default from tools profile
`debug-logging` conflicts with `download-rustc` option, and doesn't really make sense to enable it for a profile that is used for tool development. Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent 0c5864f commit bfbfb84

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/bootstrap/defaults/config.tools.toml

-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# These defaults are meant for contributors to tools which build on the
22
# compiler, but do not modify it directly.
33
[rust]
4-
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
5-
# where adding `debug!()` appears to do nothing.
6-
# However, it makes running the compiler slightly slower.
7-
debug-logging = true
84
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
95
incremental = true
106
# Download rustc from CI instead of building it from source.

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
200200
severity: ChangeSeverity::Warning,
201201
summary: "`llvm.lld` is enabled by default for the dist profile. If set to false, `lld` will not be included in the dist build.",
202202
},
203+
ChangeInfo {
204+
change_id: 127913,
205+
severity: ChangeSeverity::Warning,
206+
summary: "`debug-logging` option has been removed from the default `tools` profile.",
207+
},
203208
];

0 commit comments

Comments
 (0)