aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/quack.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/fun/quack.py')
-rw-r--r--bot/exts/fun/quack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/quack.py b/bot/exts/fun/quack.py
index 492e0c0f..459cb4a2 100644
--- a/bot/exts/fun/quack.py
+++ b/bot/exts/fun/quack.py
@@ -1,16 +1,16 @@
-import logging
import random
from typing import Literal
import discord
from discord.ext import commands
+from pydis_core.utils.logging import get_logger
from bot.bot import Bot
from bot.constants import Colours, NEGATIVE_REPLIES
API_URL = "https://quackstack.pythondiscord.com"
-log = logging.getLogger(__name__)
+log = get_logger(__name__)
class Quackstack(commands.Cog):