mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2025-07-12 07:13:50 +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');
|
||
}
|