Spaces:
Running
Running
File size: 306 Bytes
876b12f |
1 2 3 4 5 6 7 8 9 10 |
import logging
from typing import Optional
def setup_logging(level: int = logging.INFO) -> None:
"""Configure logging for the application."""
logging.basicConfig(
level=level,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
) |