Files
VA-Log-Parser/testing.js
luke-hagar-sp 9dca5ace6c Complete Rewrite
Adjusted functionality to account for significantly larger files

Better organizational Structure

Added Progress Bars, added support for multiple concurrent files at once

Adjusted flow so logs are parsed and sorted as lines are read and identified, this should improve performance, reliability, and error reporting.
2022-10-04 20:56:24 -05:00

7 lines
131 B
JavaScript

import fs from "fs";
fs.readFile("./logs/ccg_spva2_08092022.log", (err, data) => {
if (err) throw err;
console.log(data);
});