From 66b0ca88d72cfafae94f0ac97b34a10e848b3510 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 21:40:17 +0000 Subject: [PATCH] fix: Add more logging for tool calls --- src/handlers/posts.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/handlers/posts.ts b/src/handlers/posts.ts index 4c9fe8a..8974497 100644 --- a/src/handlers/posts.ts +++ b/src/handlers/posts.ts @@ -71,7 +71,8 @@ ${parsedThread}`, call.name as SupportedFunctionCall, ) ) { - logger.log("Function called invoked:", call.name); + logger.log("Function call invoked:", call.name); + logger.log("Function call arguments:", call.args); const functionResponse = await tools.handler( call as typeof call & { name: SupportedFunctionCall },