default log level info (#366)

This commit is contained in:
Bar Nuri
2025-03-25 11:50:15 +02:00
committed by GitHub
parent 568cbd1a66
commit fd2fd34357

View File

@@ -68,7 +68,7 @@ class Settings(BaseSettings, Generic[LifespanResultT]):
# Server settings
debug: bool = False
log_level: Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] = "ERROR"
log_level: Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] = "INFO"
# HTTP settings
host: str = "0.0.0.0"