bug: removes raw api response from stdout (#1224)

This commit is contained in:
Abhi
2025-06-19 16:26:31 -04:00
committed by GitHub
parent c4e7c9f675
commit aa5b7c091d
-4
View File
@@ -362,10 +362,6 @@ export class GeminiClient {
});
const result = await retryWithBackoff(apiCall);
console.log(
'Raw API Response in client.ts:',
JSON.stringify(result, null, 2),
);
return result;
} catch (error: unknown) {
if (abortSignal.aborted) {