about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-03-12 17:59:10 +0100
committerGitHub <noreply@github.com>2025-03-12 17:59:10 +0100
commit579d0587a20973bc0274d15282d6b1b95bf7e41e (patch)
tree7f82a36728d088ab5529d1838d6c6d29e3e6a9f0
parent0c4415cdd62a600d2b4a5f8155ff4112a2b73199 (diff)
parentcb260791a43efb40abf22e7413249cbdf3615d8c (diff)
downloadrust-579d0587a20973bc0274d15282d6b1b95bf7e41e.tar.gz
rust-579d0587a20973bc0274d15282d6b1b95bf7e41e.zip
Rollup merge of #138390 - onur-ozkan:fix-invalid-tracing-log, r=jieyouxu
fix incorrect tracing log

Previous information is not correct.
-rw-r--r--src/bootstrap/src/core/build_steps/compile.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs
index 8cb3e3ed872..20084a65b8a 100644
--- a/src/bootstrap/src/core/build_steps/compile.rs
+++ b/src/bootstrap/src/core/build_steps/compile.rs
@@ -194,11 +194,7 @@ impl Step for Std {
         trace!(?compiler_to_use);
 
         if compiler_to_use != compiler {
-            trace!(
-                ?compiler_to_use,
-                ?compiler,
-                "compiler != compiler_to_use, handling cross-compile scenario"
-            );
+            trace!(?compiler_to_use, ?compiler, "compiler != compiler_to_use, uplifting library");
 
             builder.ensure(Std::new(compiler_to_use, target));
             let msg = if compiler_to_use.host == target {