@@ -33,7 +33,7 @@ async def build(
3333 # import tools from builtin namespaces
3434 ns_tools = compiler .get_tools_from_namespaces (configuration .using , configuration .jail )
3535 if ns_tools :
36- logger .info (f"🧰 importing { len (ns_tools )} tools from: { configuration .using } " )
36+ logger .debug (f"🧰 importing { len (ns_tools )} tools from: { configuration .using } " )
3737 runtime .tools .extend (ns_tools )
3838
3939 # import custom tools from yaml definition
@@ -42,7 +42,7 @@ async def build(
4242 [tool for tool in configuration .tools if isinstance (tool , Tool ) and not tool .path ],
4343 )
4444 if yml_tools :
45- logger .info (f"🧰 importing { len (yml_tools )} tools from: { working_dir } " )
45+ logger .debug (f"🧰 importing { len (yml_tools )} tools from: { working_dir } " )
4646 runtime .tools .extend (yml_tools )
4747
4848 # import custom tools from files
@@ -51,13 +51,13 @@ async def build(
5151 [tool .path for tool in configuration .tools if isinstance (tool , Tool ) and tool .path ],
5252 )
5353 if py_tools :
54- logger .info (f"🧰 importing { len (py_tools )} tools from: { working_dir } " )
54+ logger .debug (f"🧰 importing { len (py_tools )} tools from: { working_dir } " )
5555 runtime .tools .extend (py_tools )
5656
5757 # import custom tools from functions (when used as sdk)
5858 funcs = [compiler .wrap_tool_function (tool ) for tool in configuration .tools if callable (tool )]
5959 if funcs :
60- logger .info (f"🧰 importing { len (funcs )} custom tools" )
60+ logger .debug (f"🧰 importing { len (funcs )} custom tools" )
6161 runtime .tools .extend (funcs )
6262
6363 # import MCP servers
0 commit comments