summaryrefslogtreecommitdiff
path: root/packages/core/src/utils/quotaErrorDetection.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/core/src/utils/quotaErrorDetection.ts')
-rw-r--r--packages/core/src/utils/quotaErrorDetection.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/core/src/utils/quotaErrorDetection.ts b/packages/core/src/utils/quotaErrorDetection.ts
index b07309cd..6fe9b312 100644
--- a/packages/core/src/utils/quotaErrorDetection.ts
+++ b/packages/core/src/utils/quotaErrorDetection.ts
@@ -68,10 +68,6 @@ export function isProQuotaExceededError(error: unknown): boolean {
};
};
if (gaxiosError.response && gaxiosError.response.data) {
- console.log(
- '[DEBUG] isProQuotaExceededError - checking response data:',
- gaxiosError.response.data,
- );
if (typeof gaxiosError.response.data === 'string') {
return checkMessage(gaxiosError.response.data);
}
@@ -87,11 +83,6 @@ export function isProQuotaExceededError(error: unknown): boolean {
}
}
}
-
- console.log(
- '[DEBUG] isProQuotaExceededError - no matching error format for:',
- error,
- );
return false;
}