From a0bf9cf6933c96bde313665341bee72a7c11570d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 23 Aug 2026 02:36:08 -0700 Subject: [PATCH] perf(status): batch text report output (#128168) Amp-Thread-ID: https://ampcode.com/threads/T-01a021f5-984a-7628-a30c-491c166ff247 Co-authored-by: Amp --- src/commands/status.command.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/commands/status.command.ts b/src/commands/status.command.ts index d0637de942d2..01fb469158b7 100644 --- a/src/commands/status.command.ts +++ b/src/commands/status.command.ts @@ -381,7 +381,5 @@ export async function statusCommand( updateRestartValue, }), ); - for (const line of lines) { - runtime.log(line); - } + runtime.log(lines.join("\n")); }