From c328e699d23160451ea96aa4e68b7ed8b4ef3c80 Mon Sep 17 00:00:00 2001 From: Hideaki Terai Date: Sat, 11 Apr 2026 20:45:18 +0900 Subject: [PATCH] Remove noisy RTM WebSocket error log messages Co-Authored-By: Claude Sonnet 4.6 --- lib/core.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/core.js b/lib/core.js index 9b52eed..7259dcf 100644 --- a/lib/core.js +++ b/lib/core.js @@ -241,11 +241,6 @@ core.start = async (commander) => { if (error && error.stack && error.stack.includes("RTMClient.js")) { errorCount++; if (now - lastErrorTime > ERROR_THROTTLE_MS) { - if (errorCount > 1) { - console.error(`RTM WebSocket errors occurred (${errorCount} times since last report)`); - } else { - console.error("RTM WebSocket error caught:", error.message || "Unknown RTM error"); - } lastErrorTime = now; errorCount = 0; }