embark/lib/core/logger.js

72 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-12-05 23:14:46 +00:00
require('colors');
let fs = require('./fs.js');
2016-08-22 03:40:05 +00:00
2017-03-30 11:12:39 +00:00
class Logger {
constructor(options) {
2018-03-15 20:44:05 +00:00
this.events = options.events;
2017-03-30 11:12:39 +00:00
this.logLevels = ['error', 'warn', 'info', 'debug', 'trace'];
this.logLevel = options.logLevel || 'info';
this.logFunction = options.logFunction || console.log;
this.logfile = options.logfile;
2017-03-30 11:12:39 +00:00
}
}
Logger.prototype.writeToFile = function (txt) {
if (!this.logfile) {
return;
}
fs.appendFileSync(this.logfile, "\n" + txt);
};
2017-03-30 11:12:39 +00:00
Logger.prototype.error = function (txt) {
if (!txt || !(this.shouldLog('error'))) {
2017-03-30 11:12:39 +00:00
return;
}
2018-03-15 20:44:05 +00:00
this.events.emit("log", "error", txt);
2016-09-17 03:56:25 +00:00
this.logFunction(txt.red);
this.writeToFile("[error]: " + txt);
2016-09-17 03:56:25 +00:00
};
2016-08-22 03:40:05 +00:00
2017-03-30 11:12:39 +00:00
Logger.prototype.warn = function (txt) {
if (!txt || !(this.shouldLog('warn'))) {
2017-03-30 11:12:39 +00:00
return;
}
2018-03-15 20:44:05 +00:00
this.events.emit("log", "warning", txt);
2016-09-17 03:56:25 +00:00
this.logFunction(txt.yellow);
this.writeToFile("[warning]: " + txt);
2016-09-17 03:56:25 +00:00
};
2016-08-22 03:40:05 +00:00
2017-03-30 11:12:39 +00:00
Logger.prototype.info = function (txt) {
if (!txt || !(this.shouldLog('info'))) {
2017-03-30 11:12:39 +00:00
return;
}
2018-03-15 20:44:05 +00:00
this.events.emit("log", "info", txt);
2016-09-17 03:56:25 +00:00
this.logFunction(txt.green);
this.writeToFile("[info]: " + txt);
2016-09-17 03:56:25 +00:00
};
2016-08-22 03:40:05 +00:00
2017-03-30 11:12:39 +00:00
Logger.prototype.debug = function (txt) {
if (!txt || !(this.shouldLog('debug'))) {
2017-03-30 11:12:39 +00:00
return;
}
2018-03-15 20:44:05 +00:00
this.events.emit("log", "debug", txt);
2016-09-17 03:56:25 +00:00
this.logFunction(txt);
this.writeToFile("[debug]: " + txt);
2016-09-17 03:56:25 +00:00
};
2017-03-30 11:12:39 +00:00
Logger.prototype.trace = function (txt) {
if (!txt || !(this.shouldLog('trace'))) {
2017-03-30 11:12:39 +00:00
return;
}
2018-03-15 20:44:05 +00:00
this.events.emit("log", "trace", txt);
2016-09-17 03:56:25 +00:00
this.logFunction(txt);
this.writeToFile("[trace]: " + txt);
2016-09-17 03:56:25 +00:00
};
2016-08-22 03:40:05 +00:00
2017-03-30 11:12:39 +00:00
Logger.prototype.shouldLog = function (level) {
2016-09-17 03:56:25 +00:00
return (this.logLevels.indexOf(level) <= this.logLevels.indexOf(this.logLevel));
2016-08-22 03:40:05 +00:00
};
module.exports = Logger;