add shard count to startup

This commit is contained in:
Lio Young 2021-04-10 23:26:07 +02:00
parent 25735dacd9
commit 6989537da9
No known key found for this signature in database
GPG Key ID: 789795A11879E169
1 changed files with 1 additions and 1 deletions

View File

@ -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)