From 0cb51098ac722060f96e875b3203725e8f5a96de Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 12 Nov 2023 02:34:09 -0500 Subject: [PATCH] Remove unnecessary clear timeout log --- src/helpers/utils.ts | 1 - 1 file changed, 1 deletion(-) 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') {