From 62998d6cb2ff86059d5c8d617d5f9a8940992123 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 26 Apr 2026 20:21:38 -0400 Subject: [PATCH] Remove duplicate per-run completion line from worker stderr Co-Authored-By: Claude Opus 4.6 --- packages/game-simulation/src/worker.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/game-simulation/src/worker.ts b/packages/game-simulation/src/worker.ts index 655622e..75f7ffb 100644 --- a/packages/game-simulation/src/worker.ts +++ b/packages/game-simulation/src/worker.ts @@ -59,4 +59,3 @@ const output = { }; process.stdout.write(JSON.stringify(output)); -process.stderr.write(`[Run #${runId}] Done in ${(result.wallTimeMs / 1000).toFixed(1)}s — ${report.passed ? 'PASSED' : 'FAILED'}\n`);