Fastapi-vue-setup 1.7.2 logging fixes.

This commit is contained in:
2026-09-18 19:07:33 +00:00
parent 4de164c457
commit b5733657f9
3 changed files with 12 additions and 15 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ async def ready(url: str, path: str = "", max_attempts: int = 50) -> None:
for attempt in range(max_attempts):
if await http_get_server(f"{url}{path}", timeout=1.0) is not None:
logger.info(" Backend ready!")
logger.info("🟢 Backend ready!")
return
if attempt == max_attempts - 1:
logger.error("Backend at %s didn't start in time", url)