From d92831f3db31762623313d54ca12816323fa59b4 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 28 Feb 2024 08:49:02 -0500 Subject: [PATCH] misc(pterodactyl): added a debug logging statement to the first line of establish_websocket_connection --- pterodactyl/pterodactyl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 71cd50e..51afe70 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -27,6 +27,7 @@ class Pterodactyl(commands.Cog): self.websocket = None async def establish_websocket_connection(self): + self.logger.debug("Establishing WebSocket connection") base_url = await self.config.base_url() api_key = await self.config.api_key() server_id = await self.config.server_id()