aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/bot.py')
-rw-r--r--bot/bot.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/bot.py b/bot/bot.py
index c81bfc5f..4cb80f00 100644
--- a/bot/bot.py
+++ b/bot/bot.py
@@ -1,14 +1,13 @@
-import logging
-
import discord
from discord import DiscordException, Embed
from discord.ext import commands
from pydis_core import BotBase
from pydis_core.utils import scheduling
+from pydis_core.utils.logging import get_logger
from bot import constants, exts
-log = logging.getLogger(__name__)
+log = get_logger(__name__)
__all__ = ("Bot", )