fix(status): remove unnecessary console log for guild name in StatusService

This commit is contained in:
2025-11-26 11:01:06 +01:00
parent 55e4cf3e6c
commit ecb12f12b7

View File

@@ -56,7 +56,6 @@ export class StatusService {
if(this.client) { if(this.client) {
try { try {
const guild = await this.client.guilds.fetch(gdb.guild_id); const guild = await this.client.guilds.fetch(gdb.guild_id);
console.log(guild.name)
const channel = await guild.channels.fetch(gdb.persistent_message_channel_id); const channel = await guild.channels.fetch(gdb.persistent_message_channel_id);
if(channel?.isSendable()) { if(channel?.isSendable()) {
const message = await channel.messages.fetch(gdb.persistent_message_id); const message = await channel.messages.fetch(gdb.persistent_message_id);