fix: remove noisy console.warn logs from NativeToolCallParser (#11264)

Remove two console.warn messages that fire excessively when loading tasks
from history:
- 'Attempting to finalize unknown tool call' in finalizeStreamingToolCall()
- 'Received chunk for unknown tool call' in processStreamingChunk()

The defensive null-return behavior is preserved; only the log output is removed.
This commit is contained in:
Daniel 2026-02-06 14:18:46 -05:00 committed by GitHub
parent 78e64115e8
commit 8ef61bd32b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -250,7 +250,6 @@ export class NativeToolCallParser {
public static processStreamingChunk(id: string, chunk: string): ToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
console.warn(`[NativeToolCallParser] Received chunk for unknown tool call: ${id}`)
return null
}
@ -295,7 +294,6 @@ export class NativeToolCallParser {
public static finalizeStreamingToolCall(id: string): ToolUse | McpToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
console.warn(`[NativeToolCallParser] Attempting to finalize unknown tool call: ${id}`)
return null
}