From 45df5dd828b53c094671adc69cf25da8c3565bac Mon Sep 17 00:00:00 2001 From: Nikola Irinchev Date: Fri, 13 Jun 2025 02:48:55 +0200 Subject: [PATCH] fix: don't log tool args --- src/tools/tool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tool.ts b/src/tools/tool.ts index bcf886ea..b7cce354 100644 --- a/src/tools/tool.ts +++ b/src/tools/tool.ts @@ -71,7 +71,7 @@ export abstract class ToolBase { const callback: ToolCallback = async (...args) => { const startTime = Date.now(); try { - logger.debug(LogId.toolExecute, "tool", `Executing ${this.name} with args: ${JSON.stringify(args)}`); + logger.debug(LogId.toolExecute, "tool", `Executing tool ${this.name}`); const result = await this.execute(...args); await this.emitToolEvent(startTime, result, ...args).catch(() => {});