Changed default log level to error (#258)

This commit is contained in:
Michaelzag
2025-03-13 09:16:21 -04:00
committed by GitHub
parent 1669a3af01
commit ad7f7a5473

View File

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