JaBa/helpers/logger.js

55 lines
1.5 KiB
JavaScript
Raw Normal View History

2022-01-04 02:18:28 +05:00
/*
Logger class for easy and aesthetically pleasing console logging
*/
const { bgBlue, black, green } = require("chalk");
function dateTimePad(value, digits) {
let number = value;
while (number.toString().length < digits) number = "0" + number;
return number;
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
function format(tDate) {
return (dateTimePad((tDate.getDate()), 2) + "-" +
2022-01-04 02:18:28 +05:00
dateTimePad((tDate.getMonth() + 1), 2) + "-" +
dateTimePad(tDate.getFullYear(), 2) + " " +
2022-01-04 02:18:28 +05:00
dateTimePad(tDate.getHours(), 2) + ":" +
dateTimePad(tDate.getMinutes(), 2) + ":" +
dateTimePad(tDate.getSeconds(), 2) + "." +
dateTimePad(tDate.getMilliseconds(), 3));
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
module.exports = class Logger {
static log(content, type = "log") {
const date = `[${format(new Date(Date.now()))}]:`;
switch (type) {
case "log": {
return console.log(`${date} ${bgBlue(type.toUpperCase())} ${content} `);
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
case "warn": {
return console.log(`${date} ${black.bgYellow(type.toUpperCase())} ${content} `);
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
case "error": {
return console.log(`${date} ${black.bgRed(type.toUpperCase())} ${content} `);
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
case "debug": {
return console.log(`${date} ${green(type.toUpperCase())} ${content} `);
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
case "cmd": {
return console.log(`${date} ${black.bgWhite(type.toUpperCase())} ${content}`);
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
case "ready": {
return console.log(`${date} ${black.bgGreen(type.toUpperCase())} ${content}`);
}
2022-01-04 02:18:28 +05:00
2022-01-13 00:26:23 +05:00
default:
throw new TypeError("Logger type must be either warn, debug, log, ready, cmd or error.");
}
2022-01-04 02:18:28 +05:00
}
};