From 31d3ac8c97cdd4140186eb0fd42f12c70e2916e5 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Fri, 21 Mar 2025 12:50:23 -0700 Subject: [PATCH] Add console log when sending page data --- app/lib/replay/SimulationPrompt.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/lib/replay/SimulationPrompt.ts b/app/lib/replay/SimulationPrompt.ts index f55d1d16..4b7ab280 100644 --- a/app/lib/replay/SimulationPrompt.ts +++ b/app/lib/replay/SimulationPrompt.ts @@ -116,6 +116,9 @@ class ChatManager { } const chatId = await this.chatIdPromise; + + console.log('ChatAddPageData', new Date().toISOString(), chatId, data.length); + await this.client.sendCommand({ method: 'Nut.addSimulationData', params: { chatId, simulationData: data },