From b2a98b41808f5947ca521a15dd944162421b5f6f Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Tue, 11 Feb 2025 17:15:00 -0800 Subject: [PATCH] tweak logging --- app/lib/replay/SimulationPrompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/replay/SimulationPrompt.ts b/app/lib/replay/SimulationPrompt.ts index 2b816cad..c873cdfa 100644 --- a/app/lib/replay/SimulationPrompt.ts +++ b/app/lib/replay/SimulationPrompt.ts @@ -236,7 +236,7 @@ export async function getSimulationEnhancedPrompt( gLastChatMessages = messages; - console.log("ChatSendMessage", messages); + console.log("ChatSendMessage", new Date().toISOString(), JSON.stringify(messages)); return gChatManager.sendChatMessage(messages); }