Spaces:
Running
Running
File size: 431 Bytes
10b392a |
1 2 3 4 5 6 7 8 9 10 |
# src/utils/logging.py
import logging
from config.settings import LOG_LEVEL
def setup_logging():
"""Configures basic logging for the application."""
logging.basicConfig(level=LOG_LEVEL, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logging.getLogger("httpx").setLevel(logging.WARNING) # Suppress chatty libraries
logging.getLogger("httpcore").setLevel(logging.WARNING) # Suppress chatty libraries
|