diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index 5607879..fb734f2 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -43,7 +43,6 @@ export async function withTimeout( const result = await asyncTask(controller.signal); /* Clear the timeout if the task completes in time */ clearTimeout(timeoutId); - console.log(`Clearing timeout after ${timeout}ms`); return result; } catch (error) { if ((error as Error).name === 'AbortError') {