diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-03-12 17:59:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-12 17:59:10 +0100 |
| commit | 579d0587a20973bc0274d15282d6b1b95bf7e41e (patch) | |
| tree | 7f82a36728d088ab5529d1838d6c6d29e3e6a9f0 | |
| parent | 0c4415cdd62a600d2b4a5f8155ff4112a2b73199 (diff) | |
| parent | cb260791a43efb40abf22e7413249cbdf3615d8c (diff) | |
| download | rust-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.rs | 6 |
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 { |
