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")); }