Add console log when sending page data

This commit is contained in:
Brian Hackett 2025-03-21 12:50:23 -07:00
parent 628d690e91
commit 31d3ac8c97

View File

@ -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 },