From 4019fafc2c5fd6b6369d1474c7fe0c365d1faf59 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 8 Jan 2026 10:30:57 +0100 Subject: [PATCH] chore: add spacing to status output --- src/commands/status.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/commands/status.ts b/src/commands/status.ts index 3a0dad644..15d200224 100644 --- a/src/commands/status.ts +++ b/src/commands/status.ts @@ -319,6 +319,7 @@ export async function statusCommand( const account = resolveWhatsAppAccount({ cfg }); logWebSelfId(account.authDir, runtime, true); } + runtime.log(""); runtime.log(info("System:")); for (const line of summary.providerSummary) { runtime.log(` ${line}`); @@ -327,6 +328,7 @@ export async function statusCommand( if (daemonLine) { runtime.log(info(daemonLine)); } + runtime.log(""); if (health) { runtime.log(info("Gateway health: reachable")); @@ -353,6 +355,7 @@ export async function statusCommand( } else { runtime.log(info("Provider probes: skipped (use --deep)")); } + runtime.log(""); if (summary.queuedSystemEvents.length > 0) { const preview = summary.queuedSystemEvents.slice(0, 3).join(" | "); runtime.log( @@ -381,6 +384,7 @@ export async function statusCommand( } else { runtime.log("No session activity yet."); } + runtime.log(""); if (usage) { for (const line of formatUsageReportLines(usage)) {