diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/connecting_state.rs | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a8ec1269..b239e10c8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ Line wrap the file at 100 chars. Th - Upgrade OpenVPN from 2.4.9 to 2.5.0. - Upgrade Electron from 8.5.2 to Electron 11.0.2. - Upgrade wireguard-go to v0.0.20201118. +- Reduce logging about time outs when conneting to a WireGuard tunnel. #### Android - Remove the Quit button. diff --git a/talpid-core/src/tunnel_state_machine/connecting_state.rs b/talpid-core/src/tunnel_state_machine/connecting_state.rs index 614d82e233..60e836a4da 100644 --- a/talpid-core/src/tunnel_state_machine/connecting_state.rs +++ b/talpid-core/src/tunnel_state_machine/connecting_state.rs @@ -168,6 +168,12 @@ impl ConnectingState { ); Some(ErrorStateCause::VirtualAdapterProblem) } + tunnel::Error::WireguardTunnelMonitoringError( + tunnel::wireguard::Error::TimeoutError, + ) => { + log::debug!("WireGuard tunnel timed out"); + None + } error => { warn!( "{}", |
