Fix wrong path

This commit is contained in:
Andras Schmelczer 2022-07-11 12:10:39 +02:00
parent 18ef86aeef
commit 43345f5851
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E

View file

@ -29,12 +29,12 @@ GREAT_AI_LOGGING_CONFIG = {
**LOGGING_CONFIG, **LOGGING_CONFIG,
"formatters": { "formatters": {
"default": { "default": {
"()": "great_ai.utilities.logger.CustomFormatter", "()": "great_ai.utilities.logger.get_logger.CustomFormatter",
"fmt": "%(asctime)s | %(levelname)8s | %(message)s", "fmt": "%(asctime)s | %(levelname)8s | %(message)s",
}, },
"access": { "access": {
"()": "great_ai.utilities.logger.CustomFormatter", "()": "great_ai.utilities.logger.get_logger.CustomFormatter",
"fmt": "%(asctime)s | %(levelname)8s | %(message)s", # noqa: E501 "fmt": "%(asctime)s | %(levelname)8s | %(message)s",
}, },
}, },
} }