misc(pterodactyl): added a debug logging statement to the first line of establish_websocket_connection
All checks were successful
Actions / Lint Code (Ruff) (pull_request) Successful in 8s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 23s

This commit is contained in:
Seaswimmer 2024-02-28 08:49:02 -05:00
parent 2d4e372784
commit d92831f3db
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

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