Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32103660
D14928.1765013250.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D14928.1765013250.diff
View Options
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<Channel, Error> {
- 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);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 6, 9:27 AM (2 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5835870
Default Alt Text
D14928.1765013250.diff (1 KB)
Attached To
Mode
D14928: [services] avoid useless log spam
Attached
Detach File
Event Timeline
Log In to Comment