mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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:
parent
78e64115e8
commit
8ef61bd32b
1 changed files with 0 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue