From a3af667f76320752a48b1f63810264f4159ebf7b Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Mon, 6 Apr 2026 23:56:08 +0200 Subject: [PATCH] debug: log api_get response for bootstrap troubleshooting Co-Authored-By: Claude Opus 4.6 (1M context) --- docker/logto-bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/logto-bootstrap.sh b/docker/logto-bootstrap.sh index dbb24f2..63f4f85 100644 --- a/docker/logto-bootstrap.sh +++ b/docker/logto-bootstrap.sh @@ -143,6 +143,7 @@ api_patch() { # ============================================================ EXISTING_APPS=$(api_get "/api/applications") +log "DEBUG api_get /api/applications: $(echo "$EXISTING_APPS" | head -c 300)" # --- SPA app (for SaaS frontend) --- SPA_ID=$(echo "$EXISTING_APPS" | jq -r ".[] | select(.name == \"$SPA_APP_NAME\" and .type == \"SPA\") | .id")