Rollup merge of #138390 - onur-ozkan:fix-invalid-tracing-log, r=jieyouxu

fix incorrect tracing log

Previous information is not correct.
This commit is contained in:
Matthias Krüger
2025-03-12 17:59:10 +01:00
committed by GitHub
@@ -194,11 +194,7 @@ fn run(self, builder: &Builder<'_>) {
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 {