Skip to content

Commit

Permalink
fix: missing logger
Browse files Browse the repository at this point in the history
  • Loading branch information
rpidanny committed Jul 4, 2024
1 parent b37e389 commit 1a9c4f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/containers/download.container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function initDownloadContainer(

Container.set(
Odysseus,
new Odysseus({ headless, waitOnCaptcha: true, initHtml: getInitPageContent() }),
new Odysseus({ headless, waitOnCaptcha: true, initHtml: getInitPageContent() }, logger),
)
Container.set(Quill, logger)
Container.set(PaperServiceConfig, {
Expand Down
2 changes: 1 addition & 1 deletion src/containers/search.container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function initSearchContainer(

Container.set(
Odysseus,
new Odysseus({ headless, waitOnCaptcha: true, initHtml: getInitPageContent() }),
new Odysseus({ headless, waitOnCaptcha: true, initHtml: getInitPageContent() }, logger),
)
Container.set(Quill, logger)
Container.set(PaperSearchConfig, { concurrency: summary || question != null ? 1 : concurrency })
Expand Down

0 comments on commit 1a9c4f1

Please sign in to comment.