21 lines
589 B
TypeScript
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");
|
|
}
|
|
}
|