From bbe107b845571b0af449cf3686b5fab8084a3fde Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sat, 25 Nov 2023 22:02:00 +0000 Subject: Always use the get_logger func from bot-core --- bot/utils/halloween/spookifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot/utils/halloween/spookifications.py') diff --git a/bot/utils/halloween/spookifications.py b/bot/utils/halloween/spookifications.py index 2f8c1448..78714a19 100644 --- a/bot/utils/halloween/spookifications.py +++ b/bot/utils/halloween/spookifications.py @@ -1,9 +1,9 @@ -import logging from random import choice, randint from PIL import Image, ImageOps +from pydis_core.utils.logging import get_logger -log = logging.getLogger() +log = get_logger() def inversion(im: Image.Image) -> Image.Image: -- cgit v1.2.3