This commit is contained in:
Mitch Ross
2026-02-07 00:30:41 -05:00
parent 6c11c7e22d
commit 4471d9f651
5 changed files with 385 additions and 7 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ def _get_env_bool(key: str, default: bool) -> bool:
# Logging configuration
_log_level_str = _get_env('LOG_LEVEL', 'WARNING').upper()
_log_level_str = _get_env('LOG_LEVEL', 'INFO').upper()
LOG_LEVEL = getattr(logging, _log_level_str, logging.WARNING)
LOG_FORMAT = _get_env('LOG_FORMAT', '%(asctime)s - %(levelname)s - %(message)s')