From e52d0f53d3c3d8a131a63a60dc9dc18a5b1cd942 Mon Sep 17 00:00:00 2001 From: Gianfranco Paoloni Date: Tue, 23 Jun 2026 21:21:27 -0300 Subject: [PATCH 1/3] chore: add debug log --- .../src/conversation/serviceScopedConversationEventHandler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts index 60498fe61c..948ef39d09 100644 --- a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts +++ b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts @@ -46,6 +46,7 @@ export const handleConversationEvent: AccountScopedHandler = async ( accountSid: AccountSID, ) => { console.info(`===== Service Conversation Listener (event: ${event.EventType})=====`); + console.info(`===== Service Conversation Listener (event: ${event})=====`); const handlers = eventHandlers[event.EventType] ?? []; console.info( From 4cbb9167b6e7997eed9c2246b7ab60ddc679b299 Mon Sep 17 00:00:00 2001 From: Gianfranco Paoloni Date: Tue, 23 Jun 2026 21:21:42 -0300 Subject: [PATCH 2/3] chore: add debug log --- .../src/conversation/serviceScopedConversationEventHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts index 948ef39d09..ec8b11a44b 100644 --- a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts +++ b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts @@ -46,7 +46,7 @@ export const handleConversationEvent: AccountScopedHandler = async ( accountSid: AccountSID, ) => { console.info(`===== Service Conversation Listener (event: ${event.EventType})=====`); - console.info(`===== Service Conversation Listener (event: ${event})=====`); + console.debug(`===== Service Conversation Listener (event: ${event})=====`); const handlers = eventHandlers[event.EventType] ?? []; console.info( From 111a7c5d2a58bbd16392273fc5ba9efdc3c9bf8d Mon Sep 17 00:00:00 2001 From: Gianfranco Paoloni Date: Tue, 23 Jun 2026 22:24:22 -0300 Subject: [PATCH 3/3] fix: dbg log --- .../src/conversation/serviceScopedConversationEventHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts index ec8b11a44b..09ba8493b8 100644 --- a/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts +++ b/lambdas/account-scoped/src/conversation/serviceScopedConversationEventHandler.ts @@ -46,7 +46,7 @@ export const handleConversationEvent: AccountScopedHandler = async ( accountSid: AccountSID, ) => { console.info(`===== Service Conversation Listener (event: ${event.EventType})=====`); - console.debug(`===== Service Conversation Listener (event: ${event})=====`); + console.debug(`===== Service Conversation Listener (event: ${JSON.stringify(event)})=====`); const handlers = eventHandlers[event.EventType] ?? []; console.info(