File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ impl<RT: Runtime> Transaction<RT> {
698698 . await ?;
699699 tracing:: info!( "Created system table: {table_name}" ) ;
700700 } else {
701- tracing:: info !( "Skipped creating system table {table_name} since it already exists" ) ;
701+ tracing:: debug !( "Skipped creating system table {table_name} since it already exists" ) ;
702702 } ;
703703 Ok ( is_new)
704704 }
@@ -727,7 +727,7 @@ impl<RT: Runtime> Transaction<RT> {
727727 . await ?;
728728 tracing:: info!( "Created virtual table: {table_name} with doc_id {table_doc_id}" ) ;
729729 } else {
730- tracing:: info !( "Skipped creating virtual table {table_name} since it already exists" ) ;
730+ tracing:: debug !( "Skipped creating virtual table {table_name} since it already exists" ) ;
731731 } ;
732732 Ok ( is_new)
733733 }
Original file line number Diff line number Diff line change @@ -136,7 +136,9 @@ impl BackendInMemoryIndexes {
136136 snapshot : & PersistenceSnapshot ,
137137 tables : & BTreeSet < TableName > ,
138138 ) -> anyhow:: Result < ( ) > {
139- for index_metadata in index_registry. all_enabled_indexes ( ) {
139+ let enabled_indexes = index_registry. all_enabled_indexes ( ) ;
140+ tracing:: info!( "Loading {} enabled indexes" , enabled_indexes. len( ) ) ;
141+ for index_metadata in enabled_indexes {
140142 let table_name = table_mapping. tablet_name ( * index_metadata. name . table ( ) ) ?;
141143 if tables. contains ( & table_name) {
142144 match & index_metadata. config {
@@ -152,14 +154,14 @@ impl BackendInMemoryIndexes {
152154 continue ;
153155 } ,
154156 }
155- tracing:: info !(
157+ tracing:: debug !(
156158 "Loading {table_name}.{} ..." ,
157159 index_metadata. name. descriptor( )
158160 ) ;
159161 let ( num_keys, total_bytes) = self
160162 . load_enabled ( index_registry, & index_metadata. name , snapshot)
161163 . await ?;
162- tracing:: info !( "Loaded {num_keys} keys, {total_bytes} bytes." ) ;
164+ tracing:: debug !( "Loaded {num_keys} keys, {total_bytes} bytes." ) ;
163165 }
164166 }
165167 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments