pull/5207/head^2
Aiden Cline 2025-12-11 13:55:08 -06:00
parent 755a79cd8e
commit 5b21334fdd
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ export namespace Log {
export function file() {
return logpath
}
let write = (msg: any) => process.stderr.write(msg)
let write = (msg: any) => {
process.stderr.write(msg)
return msg.length
}
export async function init(options: Options) {
if (options.level) level = options.level