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
commit 579d0587a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {