Skip to content

Commit

Permalink
Make noisy relay logs debug (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky authored Oct 16, 2023
1 parent 439df95 commit cc2244b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xds/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@ impl AggregatedControlPlaneDiscoveryService for ControlPlane {
);

if let Ok(Some(ack)) = next_response.await {
tracing::info!("sending ack request");
tracing::debug!("sending ack request");
requests.send(ack?)?;
} else {
tracing::info!("exceeded idle interval, sending request");
tracing::debug!("exceeded idle interval, sending request");
crate::xds::client::MdsStream::discovery_request_without_cache(
&identifier,
&mut requests,
Expand Down

0 comments on commit cc2244b

Please sign in to comment.