Prefixed log messages

This commit is contained in:
2023-11-07 15:36:08 +01:00
parent f1f8749ee8
commit c03be08198
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ module.exports = {
i: 0
},
async tick(client, timer) {
console.log(`Test timer ticked ${timer.data.i}`);
console.log(`[TIMER] Test timer ticked ${timer.data.i}`);
timer.data.i++;
if(timer.data.i >= 5) {
clearInterval(timer.instance);