Skip to content

Commit 690c781

Browse files
committed
Remove ad-hoc print of executed/cached steps in verbose mode
When verbose mode is enabled, it is very hard to see the actually executed steps.
1 parent 1e14229 commit 690c781

File tree

1 file changed

+0
-4
lines changed
  • src/bootstrap/src/core/builder

1 file changed

+0
-4
lines changed

src/bootstrap/src/core/builder/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1677,8 +1677,6 @@ You have to build a stage1 compiler for `{}` first, and then use it to build a s
16771677
panic!("{}", out);
16781678
}
16791679
if let Some(out) = self.cache.get(&step) {
1680-
self.verbose_than(1, || println!("{}c {:?}", " ".repeat(stack.len()), step));
1681-
16821680
#[cfg(feature = "tracing")]
16831681
{
16841682
if let Some(parent) = stack.last() {
@@ -1688,7 +1686,6 @@ You have to build a stage1 compiler for `{}` first, and then use it to build a s
16881686
}
16891687
return out;
16901688
}
1691-
self.verbose_than(1, || println!("{}> {:?}", " ".repeat(stack.len()), step));
16921689

16931690
#[cfg(feature = "tracing")]
16941691
{
@@ -1749,7 +1746,6 @@ You have to build a stage1 compiler for `{}` first, and then use it to build a s
17491746
let cur_step = stack.pop().expect("step stack empty");
17501747
assert_eq!(cur_step.downcast_ref(), Some(&step));
17511748
}
1752-
self.verbose_than(1, || println!("{}< {:?}", " ".repeat(self.stack.borrow().len()), step));
17531749
self.cache.put(step, out.clone());
17541750
out
17551751
}

0 commit comments

Comments
 (0)