diff options
| author | 2023-11-25 22:02:00 +0000 | |
|---|---|---|
| committer | 2023-11-25 22:04:09 +0000 | |
| commit | bbe107b845571b0af449cf3686b5fab8084a3fde (patch) | |
| tree | a54b562ee258e38bd69ee09672464c00689fd6e2 /bot/utils/checks.py | |
| parent | Use new logging util from bot-core (diff) | |
Always use the get_logger func from bot-core
Diffstat (limited to 'bot/utils/checks.py')
| -rw-r--r-- | bot/utils/checks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/utils/checks.py b/bot/utils/checks.py index c8a03935..bc6e7111 100644 --- a/bot/utils/checks.py +++ b/bot/utils/checks.py @@ -1,5 +1,4 @@ import datetime -import logging from collections.abc import Callable, Container, Iterable from discord.ext.commands import ( @@ -12,10 +11,11 @@ from discord.ext.commands import ( Cooldown, CooldownMapping, ) +from pydis_core.utils.logging import get_logger from bot import constants -log = logging.getLogger(__name__) +log = get_logger(__name__) CODEJAM_CATEGORY_NAME = "Code Jam" |