@@ -42,7 +42,7 @@ impl SystemInformation {
4242 /// Collects static information that doesn't need to be refreshed.
4343 #[ tracing:: instrument( name = "SystemInformation::init" ) ]
4444 pub fn init ( ) -> CollectContext {
45- tracing:: info !( "initializing" ) ;
45+ tracing:: debug !( "initializing" ) ;
4646 let mut ctx = CollectContext {
4747 // Each module is responsible for updating the information that it cares about.
4848 system : sysinfo:: System :: new ( ) ,
@@ -53,14 +53,14 @@ impl SystemInformation {
5353 "failed to initialize user module, ignoring but this will likely cause collection errors..."
5454 ) ;
5555 }
56- tracing:: info !( "init finished" ) ;
56+ tracing:: debug !( "init finished" ) ;
5757 ctx
5858 }
5959
6060 /// Collects and reports
6161 #[ tracing:: instrument( name = "SystemInformation::collect" , skip( ctx) ) ]
6262 pub fn collect ( ctx : & mut CollectContext ) -> Self {
63- tracing:: info !( "Starting data collection" ) ;
63+ tracing:: debug !( "Starting data collection" ) ;
6464
6565 let info = Self {
6666 resources : Some ( resources:: Resources :: collect ( & mut ctx. system ) ) ,
@@ -74,7 +74,7 @@ impl SystemInformation {
7474 // ..Default::default()
7575 } ;
7676
77- tracing:: info !( "Data collection finished" ) ;
77+ tracing:: debug !( "Data collection finished" ) ;
7878 info
7979 }
8080}
0 commit comments