Skip to content

Commit

Permalink
downgrade connection log to debug (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored Aug 29, 2022
1 parent 42930f0 commit 49f260e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/transport/src/ws/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ impl WsTransportClientBuilder {
// Perform the initial handshake.
match client.handshake().await {
Ok(ServerResponse::Accepted { .. }) => {
tracing::info!("Connection established to target: {:?}", target);
tracing::debug!("Connection established to target: {:?}", target);
let mut builder = client.into_builder();
builder.set_max_message_size(self.max_request_body_size as usize);
let (sender, receiver) = builder.finish();
Expand Down

0 comments on commit 49f260e

Please sign in to comment.