comment out log code for now

This commit is contained in:
Iuri Matias 2018-10-12 14:35:05 -04:00 committed by Pascal Precht
parent e6964c75cb
commit 65c7428a7f
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 15 additions and 15 deletions

View File

@ -4,7 +4,7 @@ const date = require('date-and-time');
const constants = require('../constants');
const DATE_FORMAT = 'YYYY-MM-DD HH:mm:ss:SSS';
const LOG_REGEX = /\[(?<date>\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d:\d\d\d)\] (?:\[(?<logLevel>\w*)\]:?)?\s?\s?(?<msg>.*)/gmi;
// const LOG_REGEX = /\[(?<date>\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d:\d\d\d)\] (?:\[(?<logLevel>\w*)\]:?)?\s?\s?(?<msg>.*)/gmi;
class Logger {
constructor(options) {
@ -38,21 +38,21 @@ class Logger {
let matches;
let logs = [];
const logFile = fs.readFileSync(this.logFile, 'utf8');
while ((matches = LOG_REGEX.exec(logFile)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (matches.index === LOG_REGEX.lastIndex) {
LOG_REGEX.lastIndex++;
}
//while ((matches = LOG_REGEX.exec(logFile)) !== null) {
// // This is necessary to avoid infinite loops with zero-width matches
// if (matches.index === LOG_REGEX.lastIndex) {
// LOG_REGEX.lastIndex++;
// }
if (matches && matches.groups) {
logs.push({
msg: [matches.groups.msg],
logLevel: matches.groups.logLevel,
name: 'embark',
timestamp: date.parse(matches.groups.date, DATE_FORMAT).getTime()
});
}
}
// if (matches && matches.groups) {
// logs.push({
// msg: [matches.groups.msg],
// logLevel: matches.groups.logLevel,
// name: 'embark',
// timestamp: date.parse(matches.groups.date, DATE_FORMAT).getTime()
// });
// }
//}
// if 'limit' is specified, get log lines from the end of the log file
if(limit && limit > 0 && logs.length > limit){