logger refactor

This commit is contained in:
Jakub Miazek
2023-06-03 15:34:31 +02:00
parent 03127a45ef
commit fce74a0016
7 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ from fastapi import FastAPI
from app.api.nonsense import router as nonsense_router
from app.api.shakespeare import router as shakespeare_router
from app.api.stuff import router as stuff_router
from app.logging import AppLogger
from app.utils.logging import AppLogger
logger = AppLogger.__call__().get_logger()