From 43345f5851132f4ee0a3ecbac5bc447fbd29418d Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Mon, 11 Jul 2022 12:10:39 +0200 Subject: [PATCH] Fix wrong path --- great_ai/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/great_ai/__main__.py b/great_ai/__main__.py index 98396ba..777bdb5 100644 --- a/great_ai/__main__.py +++ b/great_ai/__main__.py @@ -29,12 +29,12 @@ GREAT_AI_LOGGING_CONFIG = { **LOGGING_CONFIG, "formatters": { "default": { - "()": "great_ai.utilities.logger.CustomFormatter", + "()": "great_ai.utilities.logger.get_logger.CustomFormatter", "fmt": "%(asctime)s | %(levelname)8s | %(message)s", }, "access": { - "()": "great_ai.utilities.logger.CustomFormatter", - "fmt": "%(asctime)s | %(levelname)8s | %(message)s", # noqa: E501 + "()": "great_ai.utilities.logger.get_logger.CustomFormatter", + "fmt": "%(asctime)s | %(levelname)8s | %(message)s", }, }, }