From 80e7ed201d27694c3ceac764d9bea5cdb01c3304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Fl=C3=B4r?= Date: Sun, 4 Jun 2023 11:51:06 -0300 Subject: [PATCH] :loud_sound: Update log at start --- src/events/ready.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {