diff options
| author | 2023-11-25 22:02:00 +0000 | |
|---|---|---|
| committer | 2023-11-25 22:04:09 +0000 | |
| commit | bbe107b845571b0af449cf3686b5fab8084a3fde (patch) | |
| tree | a54b562ee258e38bd69ee09672464c00689fd6e2 /bot/exts/holidays/easter/egghead_quiz.py | |
| parent | Use new logging util from bot-core (diff) | |
Always use the get_logger func from bot-core
Diffstat (limited to 'bot/exts/holidays/easter/egghead_quiz.py')
| -rw-r--r-- | bot/exts/holidays/easter/egghead_quiz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/easter/egghead_quiz.py b/bot/exts/holidays/easter/egghead_quiz.py index 046f9fac..a876ae8b 100644 --- a/bot/exts/holidays/easter/egghead_quiz.py +++ b/bot/exts/holidays/easter/egghead_quiz.py @@ -1,16 +1,16 @@ import asyncio -import logging import random from json import loads from pathlib import Path 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 -log = logging.getLogger(__name__) +log = get_logger(__name__) EGGHEAD_QUESTIONS = loads(Path("bot/resources/holidays/easter/egghead_questions.json").read_text("utf8")) |