feat(KB-614): reduce CLI tool call logging noise
- Remove tool call logging from dashboard.ts CLI command - Remove tool call logging from task.ts CLI command - Add changeset documenting the reduced logging behavior
This commit is contained in:
@@ -289,7 +289,6 @@ export async function runDashboard(port: number, opts: { paused?: boolean; dev?:
|
||||
pool,
|
||||
usageLimitPauser,
|
||||
onAgentText: (delta) => process.stdout.write(delta),
|
||||
onAgentTool: (name) => console.log(`[merger] tool: ${name}`),
|
||||
onSession: (session) => { activeMergeSession = session; },
|
||||
});
|
||||
|
||||
|
||||
@@ -368,7 +368,6 @@ export async function runTaskMerge(id: string) {
|
||||
try {
|
||||
const result = await aiMergeTask(store, cwd, id, {
|
||||
onAgentText: (delta) => process.stdout.write(delta),
|
||||
onAgentTool: (name) => console.log(` [merge] tool: ${name}`),
|
||||
});
|
||||
|
||||
console.log();
|
||||
|
||||
Reference in New Issue
Block a user