diff options
author | 2022-02-24 16:10:47 +0000 | |
---|---|---|
committer | 2022-02-24 17:32:48 +0000 | |
commit | f7dac414b098900b340b2c36b0e69fce6b6c69ba (patch) | |
tree | 206580307cb4c9084e19c80212a3b2f5c98d72bb /botcore/utils/channel.py | |
parent | Alter docstrings to look better in autodocs (diff) |
Rename loggers.py to logging.py to allow for more generic utils in future
Diffstat (limited to 'botcore/utils/channel.py')
-rw-r--r-- | botcore/utils/channel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/botcore/utils/channel.py b/botcore/utils/channel.py index 6a630c94..db155911 100644 --- a/botcore/utils/channel.py +++ b/botcore/utils/channel.py @@ -3,9 +3,9 @@ import discord from discord.ext.commands import Bot -from botcore.utils import loggers +from botcore.utils import logging -log = loggers.get_logger(__name__) +log = logging.get_logger(__name__) def is_in_category(channel: discord.TextChannel, category_id: int) -> bool: |