We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9582d8 commit 54effbbCopy full SHA for 54effbb
src/tools/tool.ts
@@ -71,7 +71,7 @@ export abstract class ToolBase {
71
const callback: ToolCallback<typeof this.argsShape> = async (...args) => {
72
const startTime = Date.now();
73
try {
74
- logger.debug(LogId.toolExecute, "tool", `Executing ${this.name} with args: ${JSON.stringify(args)}`);
+ logger.debug(LogId.toolExecute, "tool", `Executing tool ${this.name}`);
75
76
const result = await this.execute(...args);
77
await this.emitToolEvent(startTime, result, ...args).catch(() => {});
0 commit comments