From 6989537da99ce3ea8ed6e4d7bbe3fc4b2cfa84fa Mon Sep 17 00:00:00 2001 From: Lio Young Date: Sat, 10 Apr 2021 23:26:07 +0200 Subject: [PATCH] add shard count to startup --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 3553ca7..868b5fe 100644 --- a/index.ts +++ b/index.ts @@ -6,7 +6,7 @@ import Logger from "./src/utils/logger"; Util.fetchRecommendedShards(config.token).then((count) => { // console.log(`Starting ${config.variables.name}`) Logger.info({ - message: `Starting ${config.variables.name}....`, + message: `Starting ${config.variables.name} with ${count} Shards`, type: "event:start" }) new client(config, count)