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/fun/recommend_game.py | |
| parent | Use new logging util from bot-core (diff) | |
Always use the get_logger func from bot-core
Diffstat (limited to 'bot/exts/fun/recommend_game.py')
| -rw-r--r-- | bot/exts/fun/recommend_game.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/fun/recommend_game.py b/bot/exts/fun/recommend_game.py index e972b9a5..7806ab2f 100644 --- a/bot/exts/fun/recommend_game.py +++ b/bot/exts/fun/recommend_game.py @@ -1,14 +1,14 @@  import json -import logging  from pathlib import Path  from random import shuffle  import discord  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__)  game_recs = []  # Populate the list `game_recs` with resource files | 
