Byparr/src/utils/consts.py

6 lines
133 B
Python
Raw Normal View History

2024-07-25 00:06:56 +00:00
import logging
import os
2024-07-24 20:41:57 +00:00
2024-07-25 00:06:56 +00:00
LOG_LEVEL = os.getenv("LOG_LEVEL") or "INFO"
2024-09-13 18:03:38 +00:00
LOG_LEVEL = logging.getLevelNamesMapping()[LOG_LEVEL.upper()]