8 lines
252 B
Python
8 lines
252 B
Python
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!")
|