From 1123b2fe0318d0d614fc67c879a2c5ae336ea122 Mon Sep 17 00:00:00 2001 From: Alejandra Date: Mon, 22 Dec 2025 20:26:03 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Reorder=20log=20messages?= =?UTF-8?q?=20for=20deployment=20readiness?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fastapi_cloud_cli/commands/deploy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fastapi_cloud_cli/commands/deploy.py b/src/fastapi_cloud_cli/commands/deploy.py index 0befb826..e9c3f6ee 100644 --- a/src/fastapi_cloud_cli/commands/deploy.py +++ b/src/fastapi_cloud_cli/commands/deploy.py @@ -376,13 +376,13 @@ def _wait_for_deployment( if log.type == "complete": progress.log("") progress.log( - f"🐔 Ready the chicken! Your app is ready at [link={deployment.url}]{deployment.url}[/link]" + f"You can also check the app logs at [link={deployment.dashboard_url}]{deployment.dashboard_url}[/link]" ) progress.log("") progress.log( - f"You can also check the app logs at [link={deployment.dashboard_url}]{deployment.dashboard_url}[/link]" + f"🐔 Ready the chicken! Your app is ready at [link={deployment.url}]{deployment.url}[/link]" ) break