Skip to content

Commit c5c0d2f

Browse files
reduce log level (#482)
1 parent bb46490 commit c5c0d2f

File tree

1 file changed

+3
-3
lines changed
  • noq-proto/src/connection

1 file changed

+3
-3
lines changed

noq-proto/src/connection/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6175,19 +6175,19 @@ impl Connection {
61756175
if max_initial_paths.as_u32() < max_remote_addresses as u32 + 1 {
61766176
// in this case the client might try to open `max_remote_addresses` new
61776177
// paths, but the current multipath configuration will not allow it
6178-
warn!(%max_initial_paths, %max_remote_addresses, "local client configuration might cause nat traversal issues")
6178+
debug!(%max_initial_paths, %max_remote_addresses, "local client configuration might cause nat traversal issues")
61796179
} else if max_local_addresses as u64
61806180
> params.active_connection_id_limit.into_inner()
61816181
{
61826182
// the server allows us to send at most `params.active_connection_id_limit`
61836183
// but they might need at least `max_local_addresses` to effectively send
61846184
// `PATH_CHALLENGE` frames to each advertised local address
6185-
warn!(%max_local_addresses, remote_cid_limit=%params.active_connection_id_limit.into_inner(), "remote server configuration might cause nat traversal issues")
6185+
debug!(%max_local_addresses, remote_cid_limit=%params.active_connection_id_limit.into_inner(), "remote server configuration might cause nat traversal issues")
61866186
}
61876187
}
61886188
Side::Server => {
61896189
if (max_initial_paths.as_u32() as u64) < crate::LOCAL_CID_COUNT {
6190-
warn!(%max_initial_paths, local_cid_limit=%crate::LOCAL_CID_COUNT, "local server configuration might cause nat traversal issues")
6190+
debug!(%max_initial_paths, local_cid_limit=%crate::LOCAL_CID_COUNT, "local server configuration might cause nat traversal issues")
61916191
}
61926192
}
61936193
}

0 commit comments

Comments
 (0)