aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/speedrun.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/fun/speedrun.py')
-rw-r--r--bot/exts/fun/speedrun.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/speedrun.py b/bot/exts/fun/speedrun.py
index 43e570a2..3685b870 100644
--- a/bot/exts/fun/speedrun.py
+++ b/bot/exts/fun/speedrun.py
@@ -1,13 +1,13 @@
import json
-import logging
from pathlib import Path
from random import choice
from discord.ext import commands
+from pydis_core.utils.logging import get_logger
from bot.bot import Bot
-log = logging.getLogger(__name__)
+log = get_logger(__name__)
LINKS = json.loads(Path("bot/resources/fun/speedrun_links.json").read_text("utf8"))