From 857408d78d64343c4fb4e0bc7a0f1d48af3bcfd5 Mon Sep 17 00:00:00 2001 From: John Lin Date: Wed, 28 Jan 2026 10:15:24 +0800 Subject: [PATCH] chore(ringcentral): only log WebSocket notifications in verbose mode Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- extensions/ringcentral/src/monitor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/ringcentral/src/monitor.ts b/extensions/ringcentral/src/monitor.ts index e6c004959..91c2f8bbb 100644 --- a/extensions/ringcentral/src/monitor.ts +++ b/extensions/ringcentral/src/monitor.ts @@ -680,7 +680,7 @@ export async function startRingCentralMonitor( // Handle notifications subscription.on(subscription.events.notification, (event: unknown) => { - runtime.log?.(`[${account.accountId}] WebSocket notification received: ${JSON.stringify(event).slice(0, 500)}`); + logVerbose(core, runtime, `WebSocket notification received: ${JSON.stringify(event).slice(0, 500)}`); const evt = event as RingCentralWebhookEvent; processWebSocketEvent({ event: evt,