2025-12-09 16:21:26 +09:00
|
|
|
import * as fs from "fs"
|
|
|
|
|
import * as os from "os"
|
|
|
|
|
import * as path from "path"
|
|
|
|
|
|
|
|
|
|
const logFile = path.join(os.tmpdir(), "oh-my-opencode.log")
|
|
|
|
|
|
2026-03-18 14:19:00 +09:00
|
|
|
let buffer: string[] = []
|
|
|
|
|
let flushTimer: ReturnType<typeof setTimeout> | null = null
|
|
|
|
|
const FLUSH_INTERVAL_MS = 500
|
|
|
|
|
const BUFFER_SIZE_LIMIT = 50
|
|
|
|
|
|
|
|
|
|
function flush(): void {
|
|
|
|
|
if (buffer.length === 0) return
|
|
|
|
|
const data = buffer.join("")
|
|
|
|
|
buffer = []
|
|
|
|
|
try {
|
|
|
|
|
fs.appendFileSync(logFile, data)
|
|
|
|
|
} catch {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function scheduleFlush(): void {
|
|
|
|
|
if (flushTimer) return
|
|
|
|
|
flushTimer = setTimeout(() => {
|
|
|
|
|
flushTimer = null
|
|
|
|
|
flush()
|
|
|
|
|
}, FLUSH_INTERVAL_MS)
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-09 16:21:26 +09:00
|
|
|
export function log(message: string, data?: unknown): void {
|
|
|
|
|
try {
|
|
|
|
|
const timestamp = new Date().toISOString()
|
|
|
|
|
const logEntry = `[${timestamp}] ${message} ${data ? JSON.stringify(data) : ""}\n`
|
2026-03-18 14:19:00 +09:00
|
|
|
buffer.push(logEntry)
|
|
|
|
|
if (buffer.length >= BUFFER_SIZE_LIMIT) {
|
|
|
|
|
flush()
|
|
|
|
|
} else {
|
|
|
|
|
scheduleFlush()
|
|
|
|
|
}
|
2025-12-09 16:21:26 +09:00
|
|
|
} catch {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getLogFilePath(): string {
|
|
|
|
|
return logFile
|
|
|
|
|
}
|