fix: use new format
This commit is contained in:
parent
3fd3881d70
commit
9bf7fa4302
2 changed files with 6 additions and 6 deletions
|
@ -12,12 +12,10 @@ export class FileDispatch extends FormattedDispatch {
|
||||||
super();
|
super();
|
||||||
this.path = path;
|
this.path = path;
|
||||||
this.stream = fs.createWriteStream(path, { flags: "a" });
|
this.stream = fs.createWriteStream(path, { flags: "a" });
|
||||||
|
|
||||||
this.stream.on("error", (err) => LOGE(`Error writing to file: ${this.path}`, err));
|
this.stream.on("error", (err) => LOGE(`Error writing to file: ${this.path}`, err));
|
||||||
}
|
}
|
||||||
|
|
||||||
process(item: ILogItem): void {
|
output(item: ILogItem): void {
|
||||||
this.stream.write(this.format(item) + "\n");
|
this.stream.write(item.data + "\n");
|
||||||
super.process(item);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ export class FormattedDispatch extends Dispatch {
|
||||||
case "number":
|
case "number":
|
||||||
return x;
|
return x;
|
||||||
case "object":
|
case "object":
|
||||||
return JSON.stringify(x);
|
return JSON.stringify(x, null, 2);
|
||||||
default:
|
default:
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,9 @@ export class FormattedDispatch extends Dispatch {
|
||||||
}
|
}
|
||||||
|
|
||||||
process(item: ILogItem): void {
|
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({
|
super.process({
|
||||||
...item,
|
...item,
|
||||||
data: this.format(item),
|
data: this.format(item),
|
||||||
|
|
Loading…
Reference in a new issue