mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-04-19 07:24:48 +00:00
6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
module.exports = function logger(area, text){
|
||
let date = new Date();
|
||
console.log('[' + area + '] – ' + date.toISOString());
|
||
if(text) console.log(text + '\n');
|
||
}
|