chore: add spacing to status output

This commit is contained in:
Peter Steinberger
2026-01-08 10:30:57 +01:00
parent 21ef1761c6
commit 4019fafc2c

View File

@@ -319,6 +319,7 @@ export async function statusCommand(
const account = resolveWhatsAppAccount({ cfg }); const account = resolveWhatsAppAccount({ cfg });
logWebSelfId(account.authDir, runtime, true); logWebSelfId(account.authDir, runtime, true);
} }
runtime.log("");
runtime.log(info("System:")); runtime.log(info("System:"));
for (const line of summary.providerSummary) { for (const line of summary.providerSummary) {
runtime.log(` ${line}`); runtime.log(` ${line}`);
@@ -327,6 +328,7 @@ export async function statusCommand(
if (daemonLine) { if (daemonLine) {
runtime.log(info(daemonLine)); runtime.log(info(daemonLine));
} }
runtime.log("");
if (health) { if (health) {
runtime.log(info("Gateway health: reachable")); runtime.log(info("Gateway health: reachable"));
@@ -353,6 +355,7 @@ export async function statusCommand(
} else { } else {
runtime.log(info("Provider probes: skipped (use --deep)")); runtime.log(info("Provider probes: skipped (use --deep)"));
} }
runtime.log("");
if (summary.queuedSystemEvents.length > 0) { if (summary.queuedSystemEvents.length > 0) {
const preview = summary.queuedSystemEvents.slice(0, 3).join(" | "); const preview = summary.queuedSystemEvents.slice(0, 3).join(" | ");
runtime.log( runtime.log(
@@ -381,6 +384,7 @@ export async function statusCommand(
} else { } else {
runtime.log("No session activity yet."); runtime.log("No session activity yet.");
} }
runtime.log("");
if (usage) { if (usage) {
for (const line of formatUsageReportLines(usage)) { for (const line of formatUsageReportLines(usage)) {