Merge pull request #17888 from Ithanil/nolog_websearch

fix: log web search queries only with level 'debug' instead of 'info'
This commit is contained in:
Tim Jaeryang Baek
2025-09-29 21:27:27 -05:00
committed by GitHub

View File

@@ -2047,7 +2047,7 @@ async def process_web_search(
result_items = [] result_items = []
try: try:
logging.info( logging.debug(
f"trying to web search with {request.app.state.config.WEB_SEARCH_ENGINE, form_data.queries}" f"trying to web search with {request.app.state.config.WEB_SEARCH_ENGINE, form_data.queries}"
) )