log_level setting

This commit is contained in:
Jörn-Michael Miehe 2022-09-07 00:17:25 +00:00
parent ea85164063
commit 9349f5b756
2 changed files with 8 additions and 5 deletions

View file

@ -9,6 +9,8 @@ import logging.config
from pydantic import BaseModel
from .settings import SETTINGS
class LogConfig(BaseModel):
"""
@ -16,16 +18,13 @@ class LogConfig(BaseModel):
https://stackoverflow.com/a/67937084
"""
LOG_FORMAT: str = "%(levelprefix)s [%(asctime)s] %(name)s: %(message)s"
LOG_LEVEL: str = "DEBUG"
# Logging config
version = 1
disable_existing_loggers = False
formatters = {
"default": {
"()": "uvicorn.logging.DefaultFormatter",
"fmt": LOG_FORMAT,
"fmt": "%(levelprefix)s [%(asctime)s] %(name)s: %(message)s",
"datefmt": "%Y-%m-%d %H:%M:%S",
},
}
@ -37,7 +36,10 @@ class LogConfig(BaseModel):
},
}
loggers = {
"ovdashboard_api": {"handlers": ["default"], "level": LOG_LEVEL},
"ovdashboard_api": {
"handlers": ["default"],
"level": SETTINGS.log_level,
},
}

View file

@ -48,6 +48,7 @@ class Settings(BaseSettings):
"""
production_mode: bool = False
log_level: str = "DEBUG"
api_v1_prefix: str = "api/v1"
openapi_url: str = "/openapi.json"
docs_url: Optional[str] = "/docs"