We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e363b90 commit 60a113fCopy full SHA for 60a113f
packages/bundler-plugin-core/src/utils/fetchWithRetry.ts
@@ -20,7 +20,7 @@ export const fetchWithRetry = async ({
20
21
for (let i = 0; i < retryCount + 1; i++) {
22
try {
23
- debug(`Attempting to fetch ${name} from: ${url}, attempt: ${i + 1}`);
+ debug(`Attempting to fetch ${name}, attempt: ${i + 1}`);
24
await delay(DEFAULT_RETRY_DELAY * i);
25
26
response = await fetch(url, requestData);
0 commit comments