We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1948e commit 7cfde6dCopy full SHA for 7cfde6d
1 file changed
src/fastapi_cloud_cli/commands/deploy.py
@@ -691,6 +691,10 @@ def deploy(
691
identity = Identity()
692
use_deploy_token = identity.has_deploy_token()
693
has_auth = use_deploy_token or identity.is_logged_in()
694
+
695
+ logger.debug(
696
+ "Authentication mode: %s", "deploy token" if use_deploy_token else "user token"
697
+ )
698
699
with get_rich_toolkit() as toolkit:
700
if not has_auth:
0 commit comments