🔊 silly logging guilds having the bot

This commit is contained in:
Axel Olausson Holtenäs 2022-04-13 03:49:11 +02:00
parent d26ba4539c
commit 537e7a96d1
No known key found for this signature in database
GPG key ID: 9347A5E873995701

View file

@ -15,5 +15,10 @@ export default {
await updatePresence(client);
await devMode(client);
await deployCommands();
const guilds = client.guilds.cache;
guilds.map(async (guild) => {
logger.silly({ name: guild.name, members: guild.memberCount });
});
},
};