aboutsummaryrefslogtreecommitdiffstats
path: root/bot/monkey_patches.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/monkey_patches.py')
-rw-r--r--bot/monkey_patches.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/monkey_patches.py b/bot/monkey_patches.py
index 4dbdb5eab..e56a19da2 100644
--- a/bot/monkey_patches.py
+++ b/bot/monkey_patches.py
@@ -1,10 +1,11 @@
-import logging
from datetime import datetime, timedelta
from discord import Forbidden, http
from discord.ext import commands
-log = logging.getLogger(__name__)
+from bot.log import get_logger
+
+log = get_logger(__name__)
class Command(commands.Command):