Skip to content

Commit c7a8cdf

Browse files
committed
Enable debug-logging by default
1 parent 9610dfe commit c7a8cdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ impl Config {
14721472
config.rust_overflow_checks_std =
14731473
overflow_checks_std.unwrap_or(config.rust_overflow_checks);
14741474

1475-
config.rust_debug_logging = debug_logging.unwrap_or(config.rust_debug_assertions);
1475+
config.rust_debug_logging = debug_logging.unwrap_or(true);
14761476

14771477
let with_defaults = |debuginfo_level_specific: Option<u32>| {
14781478
debuginfo_level_specific.or(debuginfo_level).unwrap_or(if debug == Some(true) {

0 commit comments

Comments
 (0)