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(() => {});