From b0a110e4f8926b74b8c76eaf4d0b1d1e3ec886af Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 29 Feb 2024 18:39:01 -0500 Subject: [PATCH] fix(pterodactyl): added more debug logging --- pterodactyl/pterodactyl.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 03a8125..89c4b01 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -159,13 +159,17 @@ class Pterodactyl(commands.Cog): @commands.Cog.listener() async def on_message(self, message: discord.Message): if message.channel.id == await self.config.console_channel() and message.author.id != self.bot.user.id: + self.logger.debug("Received console command from %s: %s", message.author.id, message.content) await message.channel.send(f"Received console command from {message.author.id}: {message.content[:1900]}") await self.websocket.send(json.dumps({"event": "send command", "args": [message.content]})) if message.channel.id == await self.config.chat_channel() and message.author.id != self.bot.user.id: + self.logger.debug("Received chat message from %s: %s", message.author.id, message.content) channel = self.bot.get_channel(await self.config.console_channel()) if channel: await channel.send(f"Received chat message from {message.author.id}: {message.content[:1900]}") - await self.websocket.send(json.dumps({"event": "send command", "args": ['tellraw @a ["",{"text":"%s (DISCORD): ","color":"blue"},{"text":"%s","color":"white"}]', message.author.name, message.content]})) + msg = json.dumps({"event": "send command", "args": ['tellraw @a ["",{"text":"%s (DISCORD): ","color":"blue"},{"text":"%s","color":"white"}]', message.author.name, message.content]}) + self.logger.debug("Sending chat message to server:\n%s", msg) + await self.websocket.send(msg) @commands.group(autohelp = True, name = "pterodactyl", aliases = ["ptero"]) async def pterodactyl(self, ctx: commands.Context):