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

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,