Remove comments and verbose logging from services

This commit is contained in:
rafaeldpsilva
2025-09-23 15:05:59 +01:00
parent 78151feb86
commit ba99b09e08
7 changed files with 11 additions and 43 deletions

View File

@@ -27,16 +27,12 @@ logger = logging.getLogger(__name__)
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Application lifespan manager"""
logger.info("API Gateway starting up...")
# Initialize service registry
await service_registry.initialize()
# Register all services
await service_registry.register_services(SERVICES)
# Start health check task
asyncio.create_task(health_check_task())
logger.info("API Gateway startup complete")