fix(pterodactyl): adding some debug logging
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 18s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 22s

This commit is contained in:
Seaswimmer 2024-02-29 21:07:28 -05:00
parent f87f4ee37f
commit 502ffbee84
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -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")