mirror of
https://github.com/insomniafi/insomniaid-bot.git
synced 2025-04-02 18:23:30 +00:00
6 lines
188 B
TypeScript
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');
|
|
}
|