Files
eximiabots-radiox/src/client/funcs/logger.ts
2023-06-06 01:39:35 +03:00

6 lines
188 B
TypeScript

export default function logger(area: string, text?: string){
let date = new Date();
console.log('[' + area + '] - ' + date.toISOString());
if(text) console.log(text + '\n');
}