Skip to content

Commit 1949628

Browse files
committed
fix warnings
Signed-off-by: xizheyin <[email protected]>
1 parent 30d2d89 commit 1949628

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bootstrap/src/rustc.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ impl Log for RustcCommand {
2323
fn log_step(&self, step_type: &str, name: &str, details: Vec<(&str, &str)>) {
2424
if self.verbose {
2525
cprintln!("<b>[RUSTC]</b> {} {}", step_type, name);
26+
for (label, value) in details {
27+
cprintln!(" {}: {}", label, value);
28+
}
2629
}
2730
}
2831

0 commit comments

Comments
 (0)