diff --git a/src/events/ready.ts b/src/events/ready.ts index 4d124cd..7e71b76 100644 --- a/src/events/ready.ts +++ b/src/events/ready.ts @@ -2,7 +2,7 @@ import { Client } from 'discord.js'; const handler = (client: Client) => { const now = new Date(); - console.log(`${client.user.tag} started at ${now}`); + console.log(`Bot started at ${now} [${client.user.tag}]`); } export default {