This commit is contained in:
MarkLo 2025-11-21 13:46:52 +08:00
parent c20c6bef33
commit 4a660b0897
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ async def startup_event():
# Mask password if present
if "@" in redis_url:
masked_url = redis_url.split("@")[1]
logger.info(f"Redis configured with host: {masked_url}")
logger.warning(f"Redis configured with host: {masked_url}")
else:
logger.info(f"Redis configured with URL: {redis_url}")
logger.warning(f"Redis configured with URL: {redis_url}")
# Setup CORS
setup_cors(app)