Skip to content

Commit ea8a604

Browse files
committed
fix to .debug
1 parent f4e98f7 commit ea8a604

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

litellm/proxy/search_endpoints/search_tool_management.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ async def create_search_tool(request: CreateSearchToolRequest):
165165
search_tool=request.search_tool, prisma_client=prisma_client
166166
)
167167

168-
verbose_proxy_logger.info(
168+
verbose_proxy_logger.debug(
169169
f"Successfully added search tool '{result.get('search_tool_name')}' to database. "
170170
f"Router will be updated by the cron job."
171171
)
@@ -248,7 +248,7 @@ async def update_search_tool(search_tool_id: str, request: UpdateSearchToolReque
248248
prisma_client=prisma_client,
249249
)
250250

251-
verbose_proxy_logger.info(
251+
verbose_proxy_logger.debug(
252252
f"Successfully updated search tool '{result.get('search_tool_name')}' in database. "
253253
f"Router will be updated by the cron job."
254254
)
@@ -305,7 +305,7 @@ async def delete_search_tool(search_tool_id: str):
305305
search_tool_id=search_tool_id, prisma_client=prisma_client
306306
)
307307

308-
verbose_proxy_logger.info(
308+
verbose_proxy_logger.debug(
309309
"Successfully deleted search tool from database. "
310310
"Router will be updated by the cron job."
311311
)
@@ -467,7 +467,7 @@ async def test_search_tool_connection(request: TestSearchToolConnectionRequest):
467467
timeout=10.0, # 10 second timeout for test
468468
)
469469

470-
verbose_proxy_logger.info(
470+
verbose_proxy_logger.debug(
471471
f"Successfully tested connection to {search_provider} search provider"
472472
)
473473

0 commit comments

Comments
 (0)