Skip to content

Commit d795376

Browse files
committed
Improved logging around browser initialization and retries
1 parent 4b6cd7f commit d795376

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/browser.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,7 @@ export async function create(puppeteerArgs) {
106106
await new Promise((response) => setTimeout(response, 4000));
107107
await open();
108108
} else {
109-
//... now it's an error
110-
logWithStack(
111-
1,
112-
error,
113-
'[browser] Failed to load browser after maximum retries reached.'
114-
);
109+
//... now it's an error, which is caught by the caller
115110
throw error;
116111
}
117112
}

0 commit comments

Comments
 (0)