mirror of
https://github.com/LukeHagar/VA-Log-Parser.git
synced 2025-12-09 21:07:45 +00:00
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.
7 lines
131 B
JavaScript
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);
|
|
});
|