Fix formatting of debug message in on_message event

This commit is contained in:
Pakobbix 2025-08-15 11:09:04 +02:00
parent cff4366b53
commit 2e6d0d66d1

View File

@ -101,7 +101,7 @@ async def on_message(message):
if not ALLOW_DMS and isinstance(message.channel, discord.DMChannel): return if not ALLOW_DMS and isinstance(message.channel, discord.DMChannel): return
# --- debugging --- # --- debugging ---
print(f" Message received in channel: {message.channel.id}") print(f" Message received in channel: {message.channel.id}")
print(f"📢 Whitelisted channels are: {WHITELIST_CHANNELS}") print(f"📢 Whitelisted channels are: {WHITELIST_CHANNELS}")
# ----------------------------- # -----------------------------