Update logger function

This commit is contained in:
Christer Warén 2021-09-11 18:03:27 +03:00
parent bfec178de7
commit a043cde46e

View File

@ -1,4 +1,4 @@
module.exports = function (area, text){
module.exports = function logger(area, text){
let date = new Date();
console.log('[' + area + '] ' + date.toISOString());
if(text) console.log(text + '\n');