From eb29c15df03739af4f7827aae81d0cce9a02db39 Mon Sep 17 00:00:00 2001 From: Mike C <117104599+ColemanRoo@users.noreply.github.com> Date: Tue, 14 Jan 2025 20:48:57 -0600 Subject: [PATCH] Update src/core/Cline.ts revert console error text change Co-authored-by: Matt Rubens --- src/core/Cline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Cline.ts b/src/core/Cline.ts index 3413c71941..1ee2b8d7aa 100644 --- a/src/core/Cline.ts +++ b/src/core/Cline.ts @@ -207,7 +207,7 @@ export class Cline { await fs.writeFile(filePath, JSON.stringify(this.apiConversationHistory)) } catch (error) { // in the off chance this fails, we don't want to stop the task - console.error("Failed to save api conversation history", error) + console.error("Failed to save API conversation history:", error) } }