From aba44f4d45912880d764adeddf7a61ae42eb1df3 Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Mon, 2 Feb 2026 19:37:15 +0100 Subject: [PATCH] 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 --- app/core/lifespan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/core/lifespan.py b/app/core/lifespan.py index 9c5d35e7..0f813283 100644 --- a/app/core/lifespan.py +++ b/app/core/lifespan.py @@ -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