diff options
| author | Abhi <[email protected]> | 2025-06-19 16:26:31 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-19 16:26:31 -0400 |
| commit | 012554721512f3443e855a72733ac4e82a840b6f (patch) | |
| tree | 6e9709b4cc2dcc60959d8ba1ca18e286f03d2d5c /packages/core/src | |
| parent | b0bc7c3d996d25c9fefdfbcba3ca19fa46ad199f (diff) | |
bug: removes raw api response from stdout (#1224)
Diffstat (limited to 'packages/core/src')
| -rw-r--r-- | packages/core/src/core/client.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/core/src/core/client.ts b/packages/core/src/core/client.ts index d9b30835..79217741 100644 --- a/packages/core/src/core/client.ts +++ b/packages/core/src/core/client.ts @@ -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) { |
