Remove unnecessary clear timeout log

This commit is contained in:
dangered wolf 2023-11-12 02:34:09 -05:00
parent 9462fd751d
commit 0cb51098ac
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -43,7 +43,6 @@ export async function withTimeout<T>(
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') {