From a3d63cde983c639a22d0c7369026c4fb88f0affa Mon Sep 17 00:00:00 2001 From: Slipstream Date: Wed, 11 Jun 2025 19:27:20 +0000 Subject: [PATCH] Adjust audit log poll interval --- cogs/logging_cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/logging_cog.py b/cogs/logging_cog.py index 4e501da..9cf1569 100644 --- a/cogs/logging_cog.py +++ b/cogs/logging_cog.py @@ -1654,7 +1654,7 @@ class LoggingCog(commands.Cog): # The first set of definitions already includes the toggle checks. # --- Audit Log Polling Task --- - @tasks.loop(seconds=60) # Poll every 60 seconds + @tasks.loop(minutes=1) # Poll every 60 seconds async def poll_audit_log(self): # This loop starts only after the bot is ready and initialized if not self.bot.is_ready() or self.session is None or self.session.closed: