ninwa/libs/logger.js

115 lines
2.6 KiB
JavaScript
Raw Normal View History

2022-02-15 04:33:19 +01:00
const config = require('../config.json');
const moment = require('moment');
// constants
const LOG_PREFIX_DEBUG = 'debug';
const LOG_PREFIX_INFO = 'info';
const LOG_PREFIX_WARNING = 'warning';
const LOG_PREFIX_ERROR = 'error';
const LOGLEVEL_DEBUG = 0;
const LOGLEVEL_INFO = 1;
const LOGLEVEL_WARNING = 2;
const LOGLEVEL_ERROR = 3;
const loglevel = getLogLevel();
const timestamp = getTimestamp();
// get the loglevel
function getLogLevel() {
2022-02-15 04:33:19 +01:00
switch (config.log.level) {
case LOG_PREFIX_DEBUG:
case LOGLEVEL_DEBUG:
return LOGLEVEL_DEBUG;
case LOG_PREFIX_INFO:
case LOGLEVEL_INFO:
return LOGLEVEL_INFO;
case LOG_PREFIX_WARNING:
case LOGLEVEL_WARNING:
return LOGLEVEL_WARNING;
case LOG_PREFIX_ERROR:
case LOGLEVEL_ERROR:
return LOGLEVEL_ERROR;
default:
return LOGLEVEL_INFO;
}
}
// get the timestamp format
function getTimestamp() {
if (config != undefined && config.log != undefined && config.log.format != undefined) {
return config.log.timestamp;
}
return "DD.MM.YYYY HH:mm:ss:SS";
}
2022-02-15 04:33:19 +01:00
// prefix log with 'info'
function info(message) {
if (loglevel > LOGLEVEL_INFO) {
return;
}
trace(message);
}
// prefix log with 'info'
function warn(message) {
if (loglevel > LOGLEVEL_WARNING) {
return;
}
trace(message, 'warning');
}
// prefix log with 'debug'
function debug(message) {
if (loglevel > LOGLEVEL_DEBUG) {
return;
}
trace(message, 'debug');
}
// prefix log with 'error'
function error(message) {
if (loglevel > LOGLEVEL_ERROR) {
return;
}
if (message.errors != undefined) {
for (var index = 0; index < message.errors.length; index++) {
trace(message.errors[index], 'error');
}
return;
}
2022-02-15 04:33:19 +01:00
trace(message, 'error');
}
// default logging function
function trace(message, prefix) {
if (message === undefined || message === null || message.length === 0) {
return;
}
if (prefix === undefined || prefix === null || prefix.length === 0) {
prefix = 'info';
}
let print;
switch (prefix) {
case 'error':
print = console.error;
break;
case 'debug':
print = console.debug;
break;
case 'warning':
print = console.warn;
break;
default:
print = console.log;
}
message = moment().format(timestamp) + ' | ' + prefix + ' > ' + message;
2022-02-15 04:33:19 +01:00
print(message);
}
// exports
module.exports = {
info,
warn,
debug,
error
};