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.
2 parents 4ec16e6 + 7fc5c31 commit 6a92f55Copy full SHA for 6a92f55
.changeset/stale-wasps-share.md
@@ -0,0 +1,10 @@
1
+---
2
+"roo-cline": minor
3
4
+
5
+1. Renamed "Errors" Tab to "Console"
6
+2. Fixed Console Message Coloring
7
+3. Added MCP Logs to AI Context
8
+4. Fixed Code Escaping for MCP Tools
9
+ Updated useMcpToolTool.ts to properly handle code snippets with special characters
10
+ Ensured consistent escaping behavior between approval and execution phases
src/services/mcp/McpHub.ts
@@ -622,7 +622,7 @@ export class McpHub {
622
connection.server.errorHistory.push({
623
message: truncatedError,
624
timestamp: Date.now(),
625
- level,
+ level: level as "error" | "warn" | "info" | "stdout",
626
})
627
628
// Keep only the last 100 errors
0 commit comments