Skip to content

Commit 60a113f

Browse files
committed
remove upload url from being logged
1 parent e363b90 commit 60a113f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bundler-plugin-core/src/utils/fetchWithRetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const fetchWithRetry = async ({
2020

2121
for (let i = 0; i < retryCount + 1; i++) {
2222
try {
23-
debug(`Attempting to fetch ${name} from: ${url}, attempt: ${i + 1}`);
23+
debug(`Attempting to fetch ${name}, attempt: ${i + 1}`);
2424
await delay(DEFAULT_RETRY_DELAY * i);
2525

2626
response = await fetch(url, requestData);

0 commit comments

Comments
 (0)