Merge pull request #20911 from chenyukang/yukang-fix-never-panic

Use tracing error when received compiler message for unknown package
This commit is contained in:
Shoyu Vanilla (Flint) 2025-10-25 05:37:52 +00:00 committed by GitHub
commit 3c3fcdf103
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -142,7 +142,7 @@ impl WorkspaceBuildScripts {
if let Some(&(package, workspace)) = by_id.get(package) {
cb(&workspaces[workspace][package].name, &mut res[workspace].outputs[package]);
} else {
never!("Received compiler message for unknown package: {}", package);
tracing::error!("Received compiler message for unknown package: {}", package);
}
},
progress,