136 lines
3.6 KiB
JavaScript
136 lines
3.6 KiB
JavaScript
'use strict';
|
|
|
|
const util = require('util');
|
|
|
|
const colors = require('colors');
|
|
|
|
const LOGS_DEBUG = process.env.LOGS_DEBUG ? process.env.LOGS_DEBUG === 'true' : true;
|
|
const LOGS_COLORS = process.env.LOGS_COLORS ? process.env.LOGS_COLORS === 'true' : true;
|
|
|
|
console.log('Logs', {
|
|
colors: LOGS_COLORS,
|
|
debug: LOGS_DEBUG,
|
|
});
|
|
|
|
LOGS_COLORS ? colors.enable() : colors.disable();
|
|
|
|
const options = {
|
|
depth: null,
|
|
colors: LOGS_COLORS,
|
|
};
|
|
module.exports = class Logs {
|
|
constructor(appName = 'miroTalkP2P') {
|
|
this.appName = colors.yellow(appName);
|
|
this.debugOn = LOGS_DEBUG;
|
|
this.timeStart = Date.now();
|
|
this.timeEnd = null;
|
|
this.timeElapsedMs = null;
|
|
this.tzOptions = {
|
|
timeZone: process.env.TZ || 'UTC', // Fallback to UTC if TZ environment variable is not set
|
|
hour12: false, // Set hour12 to false for 24-hour format
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Console debug logs
|
|
* @param {string} msg message
|
|
* @param {object} op optional params
|
|
* @returns
|
|
*/
|
|
debug(msg, op = '') {
|
|
if (this.debugOn) {
|
|
this.timeEnd = Date.now();
|
|
this.timeElapsedMs = this.getFormatTime(Math.floor(this.timeEnd - this.timeStart));
|
|
console.debug(
|
|
'[' + this.getDateTime() + '] [' + this.appName + '] ' + msg,
|
|
util.inspect(op, options),
|
|
this.timeElapsedMs
|
|
);
|
|
this.timeStart = Date.now();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Console logs
|
|
* @param {string} msg message
|
|
* @param {object} op optional params
|
|
* @returns
|
|
*/
|
|
log(msg, op = '') {
|
|
console.log('[' + this.getDateTime() + '] [' + this.appName + '] ' + msg, util.inspect(op, options));
|
|
}
|
|
|
|
/**
|
|
* Console info logs
|
|
* @param {string} msg message
|
|
* @param {object} op optional params
|
|
* @returns
|
|
*/
|
|
info(msg, op = '') {
|
|
console.info(
|
|
'[' + this.getDateTime() + '] [' + this.appName + '] ' + colors.green(msg),
|
|
util.inspect(op, options)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Console warning logs
|
|
* @param {string} msg message
|
|
* @param {object} op optional params
|
|
* @returns
|
|
*/
|
|
warn(msg, op = '') {
|
|
console.info(
|
|
'[' + this.getDateTime() + '] [' + this.appName + '] ' + colors.yellow(msg),
|
|
util.inspect(op, options)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Console error logs
|
|
* @param {string} msg message
|
|
* @param {object} op optional params
|
|
* @returns
|
|
*/
|
|
error(msg, op = '') {
|
|
console.info(
|
|
'[' + this.getDateTime() + '] [' + this.appName + '] ' + colors.red(msg),
|
|
util.inspect(op, options)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get date time
|
|
* @returns {string} date to Local String
|
|
*/
|
|
getDateTime() {
|
|
const currentTime = new Date().toLocaleString('en-US', this.tzOptions);
|
|
const milliseconds = String(new Date().getMilliseconds()).padStart(3, '0');
|
|
return colors.cyan(`${currentTime}:${milliseconds}`);
|
|
}
|
|
|
|
/**
|
|
* Get format time
|
|
* @param {integer} ms
|
|
* @returns formatted time
|
|
*/
|
|
getFormatTime(ms) {
|
|
let time = Math.floor(ms);
|
|
let type = 'ms';
|
|
|
|
if (ms >= 1000) {
|
|
time = Math.floor((ms / 1000) % 60);
|
|
type = 's';
|
|
}
|
|
if (ms >= 60000) {
|
|
time = Math.floor((ms / 1000 / 60) % 60);
|
|
type = 'm';
|
|
}
|
|
if (ms >= (3, 6e6)) {
|
|
time = Math.floor((ms / 1000 / 60 / 60) % 24);
|
|
type = 'h';
|
|
}
|
|
return colors.magenta('+' + time + type);
|
|
}
|
|
};
|