From 6f4464b2c4a075c9245ff273102d7a785eb12e61 Mon Sep 17 00:00:00 2001 From: javis-bot Date: Sat, 13 Jun 2026 15:00:07 +0900 Subject: [PATCH] chore(bot): log an explicit line when the broadcast auto-starts on join Makes the Go-Live auto-start verifiable from the container logs (the reviewer flagged that a successful broadcast left no log record), alongside the existing loud failure log. Co-Authored-By: Claude Opus 4.7 --- bot/src/broadcast.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bot/src/broadcast.ts b/bot/src/broadcast.ts index 0fc6ded..2409f97 100644 --- a/bot/src/broadcast.ts +++ b/bot/src/broadcast.ts @@ -72,7 +72,10 @@ export async function autoStartBroadcast( try { if (streamer.isActive()) return true; await streamer.start(ctx); - if (streamer.isActive()) return true; + if (streamer.isActive()) { + console.log("🔴 [broadcast] auto-started on voice join (Go Live)"); + return true; + } console.error( `[broadcast] auto-start attempt ${attempt}/${attempts} did not go live`, );