2019-01-13 22:55:25 +00:00
|
|
|
var fs = require('fs');
|
|
|
|
var common = require('../common');
|
|
|
|
|
2019-07-27 18:20:17 +00:00
|
|
|
exports.info = (msgJSON, selNode = common.selectedNode) => {
|
|
|
|
const msgStr = '\r\nINFO: ' + msgJSON.fileName + ' => ' + msgJSON.msg;
|
|
|
|
if (msgJSON.fileName !== 'Config Setup Variable') {
|
2020-01-29 23:36:28 +00:00
|
|
|
console.log(msgStr);
|
2019-02-14 02:31:26 +00:00
|
|
|
}
|
2019-12-12 00:58:20 +00:00
|
|
|
if(selNode && selNode.enable_logging) {
|
2019-04-06 02:52:00 +00:00
|
|
|
fs.appendFile(selNode.log_file, msgStr, function(err) {
|
|
|
|
if (err) {
|
|
|
|
return ({ error: 'Updating Log Failed!' });
|
|
|
|
} else {
|
|
|
|
return ({ message: 'Log Updated Successfully' });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-01-13 22:55:25 +00:00
|
|
|
}
|
|
|
|
|
2019-07-27 18:20:17 +00:00
|
|
|
exports.error = (msgJSON, selNode = common.selectedNode) => {
|
|
|
|
const msgStr = '\r\nERROR: ' + msgJSON.fileName + '(' + msgJSON.lineNum + ') => ' + msgJSON.msg;
|
2020-01-29 23:36:28 +00:00
|
|
|
console.error(msgStr);
|
2019-12-12 00:58:20 +00:00
|
|
|
if(selNode && selNode.enable_logging) {
|
2019-04-06 02:52:00 +00:00
|
|
|
fs.appendFile(selNode.log_file, msgStr, function(err) {
|
|
|
|
if (err) {
|
|
|
|
return ({ error: 'Updating Log Failed!' });
|
|
|
|
} else {
|
|
|
|
return ({ message: 'Log Updated Successfully' });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-07-27 18:20:17 +00:00
|
|
|
}
|