Skip to content

Commit fb46c0b

Browse files
committed
runtime, derp: quiet noisy logs
Signed-off-by: Nathan Perry <nathan@tailscale.com> Change-Id: I464cf0501b290530079a858484d521ae6a6a6964
1 parent 177b6f2 commit fb46c0b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ts_runtime/src/multiderp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl Multiderp {
121121
}
122122
}
123123

124-
#[tracing::instrument(skip_all, fields(region_id = %id), name = "derp packet transport")]
124+
#[tracing::instrument(skip_all, fields(region_id = %id), name = "derp runner")]
125125
async fn run_derp_once(
126126
id: RegionId,
127127
region: &DerpRegion,

ts_transport_derp/src/async_tokio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ where
165165
FrameType::KeepAlive => {
166166
// TODO (dylan): do we need to do anything on KeepAlive other than reset a timer?
167167
// TODO (dylan): handle KeepAlive timer
168-
tracing::debug!(transport = %self, "received KeepAlive frame");
168+
tracing::trace!("received KeepAlive frame");
169169
}
170170
FrameType::Ping => {
171171
let Some((&ping, _)) = frame.as_type::<Ping>() else {

ts_transport_derp/src/dial.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ pub async fn dial_region_tcp<'c>(
121121

122122
match dial_server(server).await {
123123
Ok(Some(conn)) => {
124-
tracing::debug!(
124+
tracing::trace!(
125125
remote_addr = %conn.peer_addr().unwrap_or((core::net::Ipv4Addr::UNSPECIFIED, 0).into()),
126126
%server.hostname,
127127
"derp tcp dial ok",

0 commit comments

Comments
 (0)