@@ -37,12 +37,12 @@ impl AstDiscovery {
3737 _package_version : Option < & str > ,
3838 ) -> Result < ( Vec < PluginSpec > , Vec < DecoratorRegistration > ) > {
3939 let start_time = std:: time:: Instant :: now ( ) ;
40- logger:: info ( & format ! ( "AST discovery started for: {}" , package_name_full) ) ;
40+ logger:: debug ( & format ! ( "AST discovery started for: {}" , package_name_full) ) ;
4141
4242 // Find the plugins.py file using entry_points.txt
4343 let ( plugins_py, plugin_module) =
4444 Self :: find_plugins_py_via_entry_points ( package_path, package_name_full, venv_path) ?;
45- logger:: info ( & format ! ( "Found plugins.py at: {:?}" , plugins_py) ) ;
45+ logger:: debug ( & format ! ( "Found plugins.py at: {:?}" , plugins_py) ) ;
4646
4747 // Phase 1: Extract plugins with constructor_args
4848 let package_root = plugins_py
@@ -60,8 +60,8 @@ impl AstDiscovery {
6060 . extract_plugins ( )
6161 . map_err ( |e| anyhow ! ( "Failed to extract plugins: {}" , e) ) ?;
6262
63- logger:: info ( & format ! (
64- "Phase 1 complete: Extracted {} plugins" ,
63+ logger:: debug ( & format ! (
64+ "Extracted {} plugins from register_plugin " ,
6565 plugins. len( )
6666 ) ) ;
6767
@@ -72,15 +72,12 @@ impl AstDiscovery {
7272 . map_err ( |e| anyhow ! ( "Failed to resolve references for {}: {}" , plugin. name, e) ) ?;
7373 }
7474
75- logger:: info ( & format ! (
76- "Phase 2 complete: Resolved references for {} plugins" ,
77- plugins. len( )
78- ) ) ;
75+ logger:: debug ( "Resolved class/function references for extracted plugins" ) ;
7976
8077 // Phase 3: Scan for decorator registrations and associate with plugins
8178 let decorator_registrations = Self :: scan_package_for_decorators ( & plugins_py) ?;
82- logger:: info ( & format ! (
83- "Phase 3 complete: Found {} decorator registrations" ,
79+ logger:: debug ( & format ! (
80+ "Found {} decorator registrations" ,
8481 decorator_registrations. len( )
8582 ) ) ;
8683
0 commit comments