fix: use new format

This commit is contained in:
Strix 2025-02-05 12:37:06 +01:00
parent 3fd3881d70
commit 9bf7fa4302
2 changed files with 6 additions and 6 deletions

View file

@ -12,12 +12,10 @@ export class FileDispatch extends FormattedDispatch {
super();
this.path = path;
this.stream = fs.createWriteStream(path, { flags: "a" });
this.stream.on("error", (err) => LOGE(`Error writing to file: ${this.path}`, err));
}
process(item: ILogItem): void {
this.stream.write(this.format(item) + "\n");
super.process(item);
output(item: ILogItem): void {
this.stream.write(item.data + "\n");
}
}

View file

@ -13,7 +13,7 @@ export class FormattedDispatch extends Dispatch {
case "number":
return x;
case "object":
return JSON.stringify(x);
return JSON.stringify(x, null, 2);
default:
return x;
}
@ -40,7 +40,9 @@ export class FormattedDispatch extends Dispatch {
}
process(item: ILogItem): void {
if (item.flags?.includes("skip_formatting")) return super.process(item);
if (item.flags?.includes("formatting:none")) return super.process(item);
else if (item.flags?.includes("formatting:json_string")) return super.process({...item, data: JSON.stringify(item.data)});
else if (item.flags?.includes("formatting:pretty_json_string")) return super.process({...item, data: JSON.stringify(item.data, null, 2)});
super.process({
...item,
data: this.format(item),