소스 검색

Merge pull request #17888 from Ithanil/nolog_websearch

fix: log web search queries only with level 'debug' instead of 'info'
Tim Jaeryang Baek 1 주 전
부모
커밋
ddb109a456
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/open_webui/routers/retrieval.py

+ 1 - 1
backend/open_webui/routers/retrieval.py

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