This commit is contained in:
Dax Raad
2025-05-26 13:44:59 -04:00
parent e1ec815d1b
commit 113c49457f
4 changed files with 305 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ export namespace Log {
export async function file(directory: string) {
const outPath = path.join(AppPath.data(directory), "opencode.out.log");
const errPath = path.join(AppPath.data(directory), "opencode.err.log");
await fs.truncate(outPath);
await fs.truncate(errPath);
await fs.truncate(outPath).catch(() => {});
await fs.truncate(errPath).catch(() => {});
const out = Bun.file(outPath);
const err = Bun.file(errPath);
const outWriter = out.writer();