diff options
Diffstat (limited to 'apps/workers')
| -rw-r--r-- | apps/workers/crawlerWorker.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workers/crawlerWorker.ts b/apps/workers/crawlerWorker.ts index c8141d39..70fda993 100644 --- a/apps/workers/crawlerWorker.ts +++ b/apps/workers/crawlerWorker.ts @@ -115,7 +115,7 @@ async function launchBrowser() { globalBrowser = await startBrowserInstance(); } catch (e) { logger.error( - "[Crawler] Failed to connect to the browser instance, will retry in 5 secs", + `[Crawler] Failed to connect to the browser instance, will retry in 5 secs: ${(e as Error).stack}`, ); if (isShuttingDown) { logger.info("[Crawler] We're shutting down so won't retry."); |
