clawmoney 0.13.5 → 0.13.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -314,7 +314,8 @@ async function callLoadCodeAssist(accessToken) {
|
|
|
314
314
|
try {
|
|
315
315
|
const resp = await fetchWithProxy(`${baseEndpoint}/v1internal:loadCodeAssist`, { method: "POST", headers, body });
|
|
316
316
|
if (!resp.ok) {
|
|
317
|
-
|
|
317
|
+
const errBody = await resp.text().catch(() => "");
|
|
318
|
+
logger.warn(`[antigravity-api] loadCodeAssist ${resp.status} at ${baseEndpoint}: ${errBody.slice(0, 400)}`);
|
|
318
319
|
continue;
|
|
319
320
|
}
|
|
320
321
|
const data = (await resp.json());
|