From a0b1773185d46dffab7f593f9ca29f9d5f56d5cb Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 1 Mar 2024 14:57:21 -0500 Subject: [PATCH] fix(pterodactyl): added another info logging statement --- pterodactyl/pterodactyl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index cead70a..7a4399f 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -50,6 +50,7 @@ class Pterodactyl(commands.Cog): self.task.cancel() if self.retry_counter < 5: self.retry_counter += 1 + logger.info("Retrying in %s seconds...", 5 * self.retry_counter) time.sleep(5 * self.retry_counter) self.task = self.get_task() else: