Skip to content

Commit

Permalink
removed query from log info
Browse files Browse the repository at this point in the history
  • Loading branch information
eavanvalkenburg committed Nov 14, 2024
1 parent ed6d152 commit a4f3584
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ async def _inner_search(self, query: str, options: TextSearchOptions) -> BingSea

logger.info(
f"Received request for bing web search with \
params:\nquery: {query}\nnum_results: {options.top}\noffset: {options.skip}"
params:\nnum_results: {options.top}\noffset: {options.skip}"
)

url = self._get_url()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async def _inner_search(self, query: str, options: TextSearchOptions) -> GoogleS

logger.info(
f"Received request for google web search with \
params:\nquery: {query}\nnum_results: {options.top}\noffset: {options.skip}"
params:\nnum_results: {options.top}\noffset: {options.skip}"
)

full_url = f"{CUSTOM_SEARCH_URL}{self._build_query(query, options)}"
Expand Down

0 comments on commit a4f3584

Please sign in to comment.