@@ -107,7 +107,7 @@ impl Stream for InstrumentedStream {
107107 let this = & mut * self ;
108108 if !this. first_poll_logged {
109109 this. first_poll_logged = true ;
110- info ! ( "InstrumentedStream({}): first poll" , this. label) ;
110+ debug ! ( "InstrumentedStream({}): first poll" , this. label) ;
111111 }
112112 this. poll_count += 1 ;
113113
@@ -116,7 +116,7 @@ impl Stream for InstrumentedStream {
116116 Poll :: Ready ( Some ( Ok ( batch) ) ) => {
117117 if !this. first_batch_logged {
118118 this. first_batch_logged = true ;
119- info ! (
119+ debug ! (
120120 "InstrumentedStream({}): first batch ({} rows) after {:.3}s, {} polls" ,
121121 this. label,
122122 batch. num_rows( ) ,
@@ -134,7 +134,7 @@ impl Stream for InstrumentedStream {
134134 ) ;
135135 }
136136 Poll :: Ready ( None ) => {
137- info ! (
137+ debug ! (
138138 "InstrumentedStream({}): stream ended after {:.3}s, {} polls" ,
139139 this. label,
140140 this. start. elapsed( ) . as_secs_f64( ) ,
@@ -251,7 +251,7 @@ impl ExecutionPlan for ShuffleReaderExec {
251251 context : Arc < TaskContext > ,
252252 ) -> Result < SendableRecordBatchStream > {
253253 let task_id = context. task_id ( ) . unwrap_or_else ( || partition. to_string ( ) ) ;
254- info ! (
254+ debug ! (
255255 "ShuffleReaderExec::execute({task_id}) partition={partition}, num_locations={}, stage_id={}" ,
256256 self . partition. get( partition) . map( |p| p. len( ) ) . unwrap_or( 0 ) ,
257257 self . stage_id,
@@ -581,7 +581,7 @@ fn send_fetch_partitions(
581581 locations. object_store. len( ) ,
582582 locations. remote. len( )
583583 ) ;
584- info ! (
584+ debug ! (
585585 "send_fetch_partitions: {} total locations (memory={}, local={}, object_store={}, remote={})" ,
586586 locations. memory. len( )
587587 + locations. local. len( )
@@ -614,9 +614,9 @@ fn send_fetch_partitions(
614614 let local_locations = locations. local ;
615615 let local_count = local_locations. len ( ) ;
616616 spawned_tasks. push ( SpawnedTask :: spawn ( async move {
617- info ! ( "fetch_local_task: STARTED, {local_count} local files to read" ) ;
617+ debug ! ( "fetch_local_task: STARTED, {local_count} local files to read" ) ;
618618 for ( i, p) in local_locations. into_iter ( ) . enumerate ( ) {
619- info ! (
619+ debug ! (
620620 "fetch_local[{}/{}]: reading {}/{}/{} from {}" ,
621621 i + 1 ,
622622 local_count,
@@ -636,7 +636,7 @@ fn send_fetch_partitions(
636636 )
637637 . await ;
638638 let ok = r. is_ok ( ) ;
639- info ! (
639+ debug ! (
640640 "fetch_local[{}/{}]: {}/{}/{} completed in {:.3}s, ok={}" ,
641641 i + 1 ,
642642 local_count,
@@ -822,7 +822,7 @@ async fn fetch_partition_remote(
822822 let partition_id = & location. partition_id ;
823823 let host = metadata. host . as_str ( ) ;
824824 let port = metadata. port ;
825- info ! (
825+ debug ! (
826826 "fetch_partition_remote: fetching {}/{}/{} from {}:{}" ,
827827 partition_id. job_id, partition_id. stage_id, partition_id. partition_id, host, port
828828 ) ;
0 commit comments