chore: update startup message to reflect multi-tenant platform

Change startup/shutdown log messages from "ecommerce API" to
"Wizamart multi-tenant platform" to better reflect the current
architecture.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-02 19:37:15 +01:00
parent 7fefab1508
commit aba44f4d45

View File

@@ -32,13 +32,13 @@ async def lifespan(app: FastAPI):
# === STARTUP ===
app_logger = setup_logging()
app_logger.info("Starting up ecommerce API")
app_logger.info("Starting Wizamart multi-tenant platform")
logger.info("[OK] Application startup completed")
yield
# === SHUTDOWN ===
app_logger.info("Shutting down ecommerce API")
app_logger.info("Shutting down Wizamart platform")
# Add cleanup tasks here if needed