From be25a248678c826f4f1508b94eded29aaa7e1125 Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Thu, 7 May 2026 11:27:17 -0400 Subject: [PATCH] refactor(core): remove low-value [TopicTool] debug logs --- packages/core/src/tools/topicTool.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/core/src/tools/topicTool.ts b/packages/core/src/tools/topicTool.ts index f0cb328b0a..b7cb4d5d4f 100644 --- a/packages/core/src/tools/topicTool.ts +++ b/packages/core/src/tools/topicTool.ts @@ -19,7 +19,6 @@ import { type ExecuteOptions, } from './tools.js'; import type { MessageBus } from '../confirmation-bus/message-bus.js'; -import { debugLogger } from '../utils/debugLogger.js'; import { getUpdateTopicDeclaration } from './definitions/dynamic-declaration-helpers.js'; import type { Config } from '../config/config.js'; @@ -69,10 +68,6 @@ class UpdateTopicInvocation extends BaseToolInvocation< const currentIntent = strategicIntent || this.config.topicState.getIntent() || '...'; - debugLogger.log( - `[TopicTool] Update: Topic="${currentTopic}", Intent="${currentIntent}", isNew=${isNewTopic}`, - ); - let llmContent = ''; let returnDisplay = '';