about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-08-11 16:57:31 +0200
committerJakub Beránek <berykubik@gmail.com>2025-08-11 18:21:06 +0200
commit690c781475acb890f33d928186bdaea9ef179330 (patch)
tree9e283735fe9c6afdd075fe56a4575f315b3d9c97
parent1e14229e40aae28390d11f8de8997771614c68dd (diff)
downloadrust-690c781475acb890f33d928186bdaea9ef179330.tar.gz
rust-690c781475acb890f33d928186bdaea9ef179330.zip
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.
-rw-r--r--src/bootstrap/src/core/builder/mod.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap/src/core/builder/mod.rs b/src/bootstrap/src/core/builder/mod.rs
index 0eae2f58a68..4ac040ad0ad 100644
--- a/src/bootstrap/src/core/builder/mod.rs
+++ b/src/bootstrap/src/core/builder/mod.rs
@@ -1677,8 +1677,6 @@ You have to build a stage1 compiler for `{}` first, and then use it to build a s
                 panic!("{}", out);
             }
             if let Some(out) = self.cache.get(&step) {
-                self.verbose_than(1, || println!("{}c {:?}", "  ".repeat(stack.len()), step));
-
                 #[cfg(feature = "tracing")]
                 {
                     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
                 }
                 return out;
             }
-            self.verbose_than(1, || println!("{}> {:?}", "  ".repeat(stack.len()), step));
 
             #[cfg(feature = "tracing")]
             {
@@ -1749,7 +1746,6 @@ You have to build a stage1 compiler for `{}` first, and then use it to build a s
             let cur_step = stack.pop().expect("step stack empty");
             assert_eq!(cur_step.downcast_ref(), Some(&step));
         }
-        self.verbose_than(1, || println!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), step));
         self.cache.put(step, out.clone());
         out
     }