fix(pterodactyl): don't log console command executions

This commit is contained in:
Seaswimmer 2024-02-28 13:22:46 -05:00
parent ec2cd09f8e
commit f6f0a31763
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -79,7 +79,8 @@ class Pterodactyl(commands.Cog):
channel = self.bot.get_channel(await self.config.console_channel())
if channel is not None:
content = self.remove_ansi_escape_codes(json.loads(message)['args'][0][:1900])
await channel.send(content=content)
if content.startswith('['):
await channel.send(content=content)
#TODO - Add pagification for long messages to prevent Discord API errors
except websockets.exceptions.ConnectionClosed as e:
self.logger.debug("WebSocket connection closed: %s", e)