diff --git a/src/utils/blob.js b/src/utils/blob.js index 27e0422..af9f750 100644 --- a/src/utils/blob.js +++ b/src/utils/blob.js @@ -13,7 +13,7 @@ export async function download(url) { const blob = new Blob(chunks) console.debug('[blob] Downloaded', url, blob.size) - if (blob.size !== contentLength) console.warn('[blob] Download size mismatch', { + if (blob.size !== contentLength) console.debug('[blob] Download size mismatch', { url, expected: contentLength, actual: blob.size,