freeleaps-authentication/webapi/providers/logger.py

9 lines
293 B
Python
Raw Permalink Normal View History

2025-10-30 03:26:05 +00:00
from loguru import logger as guru_logger
from common.log.base_logger import LoggerBase
def register_logger():
print("📢 Setting up logging interception...")
LoggerBase.configure_uvicorn_logging()
print("✅ Logging interception complete. Logs are formatted and deduplicated!")