fix(client): log loaded guild configurations on client ready

This commit is contained in:
2025-11-03 14:24:47 +01:00
parent a577f99277
commit c571e03495

View File

@@ -86,6 +86,9 @@ client.on(Events.InteractionCreate, async interaction => {
client.once(Events.ClientReady, readyClient => {
console.log(`Ready! Logged in as ${readyClient.user.tag}`);
client.guilds.cache.forEach((value) => {
console.log(`${value.name} conf loaded !`);
});
statusService.setClient(client);
});