From 502ffbee84ac63ba47466ffaa86ea2873b35f680 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 29 Feb 2024 21:07:28 -0500 Subject: [PATCH] fix(pterodactyl): adding some debug logging --- pterodactyl/pterodactyl.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 5bf36d3..beda4a8 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -118,6 +118,7 @@ class Pterodactyl(commands.Cog): async def check_if_chat_message(self, text: str) -> Union[bool, dict]: self.logger.debug("Checking if message is a chat message") regex = await self.config.chat_regex() + self.logger.debug(regex) self.logger.debug('1') match: Optional[re.Match[str]] = re.match(regex, text) self.logger.debug('2') @@ -160,7 +161,10 @@ class Pterodactyl(commands.Cog): async def get_tellraw_string(self, username: str, message: str, color: discord.Color): tellraw = await self.config.tellraw_json() - return tellraw.replace(".$U", username).replace(".$M", message).replace(".$C", str(color)) + self.logger.debug("Generating tellraw string:\n%s", tellraw) + tellraw = tellraw.replace(".$U", username).replace(".$M", message).replace(".$C", str(color)) + self.logger.debug("Tellraw string generated:\n%s", tellraw) + return tellraw def get_task(self): return self.bot.loop.create_task(self.establish_websocket_connection(), name="Pterodactyl Websocket Connection")