fix(plugins): print gauntlet failure details · openclaw/openclaw@8c9cac2
vincentkoc
·
2026-04-29
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -567,6 +567,14 @@ async function main() {
|
567 | 567 | process.stdout.write( |
568 | 568 | `[plugin-gauntlet] plugins=${selectedPlugins.length}/${matrix.length} rows=${rows.length} failures=${failures.length} observations=${summary.observations.length}\n`, |
569 | 569 | ); |
| 570 | +for (const failure of failures) { |
| 571 | +process.stdout.write( |
| 572 | +`[plugin-gauntlet] failure phase=${failure.phase} plugin=${failure.pluginId ?? "<none>"} status=${failure.status} timedOut=${failure.timedOut} wallMs=${Math.round(failure.wallMs)} log=${failure.logPath}\n`, |
| 573 | +); |
| 574 | +} |
| 575 | +for (const observation of summary.observations.slice(0, 20)) { |
| 576 | +process.stdout.write(`[plugin-gauntlet] observation ${JSON.stringify(observation)}\n`); |
| 577 | +} |
570 | 578 | if (failures.length > 0) { |
571 | 579 | process.exitCode = 1; |
572 | 580 | } |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。