From 48634ac90325582c8cd4ade6b338f99e41f655dd Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 28 Feb 2024 11:57:39 -0500 Subject: [PATCH] fix(pterodactyl): enabled debug mode on the pterodactylclient --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 1c01d53..6d16076 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -39,7 +39,7 @@ class Pterodactyl(commands.Cog): self.logger.debug("debug 2") try: - client = PterodactylClient(base_url, api_key).client + client = PterodactylClient(base_url, api_key, debug=True).client self.logger.debug("debug 3") websocket_credentials = client.servers.get_websocket(server_id) self.logger.debug("debug 4")