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.
1 parent d2b51c1 commit 921d7caCopy full SHA for 921d7ca
.changeset/late-rockets-talk.md
@@ -0,0 +1,5 @@
1
+---
2
+"roo-cline": patch
3
4
+
5
+Log api-initiated tasks to a tmp directory
src/extension/api.ts
@@ -2,6 +2,7 @@ import { EventEmitter } from "events"
import * as vscode from "vscode"
import fs from "fs/promises"
import * as path from "path"
+import * as os from "os"
6
7
import {
8
RooCodeAPI,
@@ -50,7 +51,7 @@ export class API extends EventEmitter<RooCodeEvents> implements RooCodeAPI {
50
51
console.log(args)
52
}
53
- this.logfile = path.join(getWorkspacePath(), "roo-code-messages.log")
54
+ this.logfile = path.join(os.tmpdir(), "roo-code-messages.log")
55
} else {
56
this.log = () => {}
57
0 commit comments