1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-18 13:00:58 -05:00
Daggerbot-TS/src/helpers/Logger.ts

6 lines
224 B
TypeScript
Raw Normal View History

2023-10-07 17:01:16 -04:00
import dayjs from 'dayjs';
export default class Logger {
2023-12-24 10:21:40 -05:00
public static console =(logType:'log'|'error', prefix:string, message:any)=>console[logType](`[${dayjs().format('DD/MM/YY HH:mm:ss')}]`, `[${prefix}]`, message);
}