Ride-The-Lightning-RTL/controllers/logger.js
2019-01-13 17:55:25 -05:00

30 lines
No EOL
783 B
JavaScript

var fs = require('fs');
var path = require('path');
var file_path = path.normalize(__dirname + '/..') + '/RTL.log';
var common = require('../common');
exports.info = (msgStr) => {
console.log('Console: ' + msgStr);
if(common.enable_logging) {
fs.appendFile(file_path, msgStr, function(err) {
if (err) {
return ({ error: 'Updating Log Failed!' });
} else {
return ({ message: 'Log Updated Successfully' });
}
});
}
}
exports.error = (msgStr) => {
console.error('Console: ' + msgStr);
if(common.enable_logging) {
fs.appendFile(file_path, msgStr, function(err) {
if (err) {
return ({ error: 'Updating Log Failed!' });
} else {
return ({ message: 'Log Updated Successfully' });
}
});
}
}