5757 )
5858 . collect :: < FuturesUnordered < _ > > ( )
5959 . await ;
60- tracing:: info !( ?quorum_size, len = ?responses. len( ) , ?quorum_type, "fanout quorum size" ) ;
60+ tracing:: debug !( ?quorum_size, len = ?responses. len( ) , ?quorum_type, "fanout quorum size" ) ;
6161
6262 // Choose how many successful responses we need before considering a success
6363 let target_responses = match quorum_type {
@@ -115,7 +115,7 @@ pub async fn send_message_to_address(
115115 let to_replica_id = request. to_replica_id ;
116116
117117 if from_replica_id == to_replica_id {
118- tracing:: info !(
118+ tracing:: debug !(
119119 to_replica = to_replica_id,
120120 "sending message to replica directly"
121121 ) ;
@@ -126,7 +126,7 @@ pub async fn send_message_to_address(
126126 let mut replica_url = url:: Url :: parse ( & replica_url) ?;
127127 replica_url. set_path ( & format ! ( "/v{PROTOCOL_VERSION}/epoxy/message" ) ) ;
128128
129- tracing:: info !(
129+ tracing:: debug !(
130130 to_replica = to_replica_id,
131131 %replica_url,
132132 "sending message to replica via http"
@@ -183,7 +183,7 @@ pub async fn send_message_to_address(
183183 let body = response. bytes ( ) . await ?;
184184 let response_body = versioned:: Response :: deserialize ( & body) ?;
185185
186- tracing:: info !(
186+ tracing:: debug !(
187187 to_replica = to_replica_id,
188188 "successfully sent message via http"
189189 ) ;
0 commit comments