From 461db9e46930a41961eaa82acc13f1f936727372 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 26 Dec 2025 08:41:58 +0000 Subject: [PATCH] fix: split whatsapp listen hint from subsystem log --- src/web/auto-reply.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/web/auto-reply.ts b/src/web/auto-reply.ts index b36a38c96..0393386d2 100644 --- a/src/web/auto-reply.ts +++ b/src/web/auto-reply.ts @@ -1349,9 +1349,10 @@ export async function monitorWebProvider( }, WATCHDOG_CHECK_MS); } - whatsappLog.info( - "Listening for personal WhatsApp inbound messages. Ctrl+C to stop.", - ); + whatsappLog.info("Listening for personal WhatsApp inbound messages."); + if (process.stdout.isTTY || process.stderr.isTTY) { + whatsappLog.raw("Ctrl+C to stop."); + } if (!keepAlive) { await closeListener();