diff --git a/services/identity/src/websockets/mod.rs b/services/identity/src/websockets/mod.rs --- a/services/identity/src/websockets/mod.rs +++ b/services/identity/src/websockets/mod.rs @@ -16,7 +16,7 @@ use serde::{Deserialize, Serialize}; use tokio::net::TcpListener; use tower::ServiceBuilder; -use tracing::{debug, error, info, warn}; +use tracing::{debug, error, info, trace, warn}; mod auth; mod opensearch; @@ -365,6 +365,6 @@ } } - info!("unregistering connection to: {}", addr); + trace!("unregistering connection to: {}", addr); close_connection(outgoing).await; } diff --git a/services/tunnelbroker/src/websockets/mod.rs b/services/tunnelbroker/src/websockets/mod.rs --- a/services/tunnelbroker/src/websockets/mod.rs +++ b/services/tunnelbroker/src/websockets/mod.rs @@ -318,7 +318,7 @@ } } - info!("Unregistering connection to: {}", addr); + trace!("Unregistering connection to: {}", addr); session.close().await } diff --git a/shared/grpc_clients/src/lib.rs b/shared/grpc_clients/src/lib.rs --- a/shared/grpc_clients/src/lib.rs +++ b/shared/grpc_clients/src/lib.rs @@ -8,14 +8,14 @@ use error::Error; use std::time::Duration; use tonic::transport::Channel; -use tracing::info; +use tracing::trace; const CONNECT_TIMEOUT_DURATION: Duration = Duration::from_secs(30); pub(crate) async fn get_grpc_service_channel( url: &str, ) -> Result { - info!("Connecting to gRPC service at {}", url); + trace!("Connecting to gRPC service at {}", url); let channel = Channel::from_shared(url.to_string())? .connect_timeout(CONNECT_TIMEOUT_DURATION);