Skip to content

Commit

Permalink
Additional log output
Browse files Browse the repository at this point in the history
  • Loading branch information
rconway committed Feb 16, 2024
1 parent f49187f commit 09a41fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspace_api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def register_workspace_api_keycloak_protection(
}
response = requests.post(f"{identity_api_url}/clients", headers=headers, json=body)
if response.status_code == 200 or response.status_code == 409:
logger.info(f" [Create Client] Completed with response: {response.status_code}")
logger.info(f" [Create Client] Completed with response: {response.status_code}\n{response.text}")
created_client_details = response.json()
if "client" in created_client_details:
new_client_uuid = created_client_details["client"]
Expand Down

0 comments on commit 09a41fb

Please sign in to comment.