tslog/FileDispatch.ts
2025-02-05 12:37:06 +01:00

21 lines
589 B
TypeScript

import * as fs from "fs";
import { FormattedDispatch } from "./FormattedDispatch";
import { App } from "../App";
import { ILogItem } from "./ILogItem";
import { LOGE, LOGW } from "./common";
export class FileDispatch extends FormattedDispatch {
path: string;
stream: fs.WriteStream;
constructor(path: string) {
super();
this.path = path;
this.stream = fs.createWriteStream(path, { flags: "a" });
this.stream.on("error", (err) => LOGE(`Error writing to file: ${this.path}`, err));
}
output(item: ILogItem): void {
this.stream.write(item.data + "\n");
}
}