mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 16:30:58 -05:00
Add debug logging to Logger class
This commit is contained in:
parent
137a0ae7b8
commit
9979a4af9d
@ -2,4 +2,5 @@ import dayjs from 'dayjs';
|
||||
|
||||
export default class Logger {
|
||||
public static console =(logType:'log'|'error', prefix:string, message:any)=>console[logType](`[${dayjs().format('DD/MM/YY HH:mm:ss')}]`, `[${prefix}]`, message);
|
||||
public static debug =(prefix:string, message:any)=>console.log(`[${dayjs().format('DD/MM/YY HH:mm:ss')}]`, `[${prefix}:DEBUG]`, message);
|
||||
}
|
||||
|
@ -114,7 +114,7 @@ export class UserLevelsSvc {
|
||||
))
|
||||
]});
|
||||
} catch (why) {
|
||||
Logger.console('error', 'Cron:resetAllData:DEBUG', why)
|
||||
Logger.debug('Cron:resetAllData', why)
|
||||
}
|
||||
|
||||
// Reset LRSstart to current Epoch and save it to config file
|
||||
|
@ -43,7 +43,7 @@ export default async(client:TClient)=>{
|
||||
continue;
|
||||
}
|
||||
if (getVideoId(1) === cachedVideoId) {
|
||||
Logger.console('log', 'YTModule:DEBUG', `New video uploaded by ${YTChannelName} and notification sent to Discord`)
|
||||
Logger.debug('YTModule', `New video uploaded by ${YTChannelName} and notification sent to Discord`)
|
||||
await CacheServer.delete(cacheKey).then(async()=>await CacheServer.set(cacheKey, getVideoId(0), false).then(async()=>await CacheServer.expiry(cacheKey, cacheExpiry)));
|
||||
|
||||
(client.channels.resolve(DiscordChannelID) as TextChannel).send({
|
||||
|
Loading…
Reference in New Issue
Block a user