diff --git a/src/utils/fetch.ts b/src/utils/fetch.ts index 246c2f4b..e2536798 100644 --- a/src/utils/fetch.ts +++ b/src/utils/fetch.ts @@ -39,7 +39,7 @@ export default function createFetch(options: { cache: IKeyValueCache; disableCac const response = await nodeFetch(url, requestInit); const elapsedTime = performance.now() - startTime; if (elapsedTime > slowLogTimeout) { - getLogger().warn( + getLogger().info( `Fetching '${url}' took ${elapsedTime.toFixed( 2, )}ms which is slower than slow log timeout of ${slowLogTimeout}ms`,