diff options
Diffstat (limited to 'bot/exts/holidays/holidayreact.py')
-rw-r--r-- | bot/exts/holidays/holidayreact.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/holidayreact.py b/bot/exts/holidays/holidayreact.py index 306cde53..ef44115a 100644 --- a/bot/exts/holidays/holidayreact.py +++ b/bot/exts/holidays/holidayreact.py @@ -1,17 +1,17 @@ -import logging import random import re from typing import NamedTuple import discord from discord.ext.commands import Cog +from pydis_core.utils.logging import get_logger from bot.bot import Bot from bot.constants import Month from bot.utils import resolve_current_month from bot.utils.decorators import in_month -log = logging.getLogger(__name__) +log = get_logger(__name__) class Trigger(NamedTuple): |