diff options
| author | David Lönnhager <david.l@mullvad.net> | 2021-07-02 15:37:15 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2021-07-02 15:57:22 +0200 |
| commit | 4b0d04e6534ebfecc4a905237468774af934bd45 (patch) | |
| tree | 93f33f7be297caa2d2e4b0c0ba032e04d82abe57 | |
| parent | 9173a66f4eb085c792156a39f90ab2b8ed052528 (diff) | |
| download | mullvadvpn-4b0d04e6534ebfecc4a905237468774af934bd45.tar.xz mullvadvpn-4b0d04e6534ebfecc4a905237468774af934bd45.zip | |
Clarify ST log
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/connecting_state.rs | 2 | ||||
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/disconnected_state.rs | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/talpid-core/src/tunnel_state_machine/connecting_state.rs b/talpid-core/src/tunnel_state_machine/connecting_state.rs index ebe4cf68b2..f9a52c7881 100644 --- a/talpid-core/src/tunnel_state_machine/connecting_state.rs +++ b/talpid-core/src/tunnel_state_machine/connecting_state.rs @@ -464,7 +464,7 @@ impl TunnelState for ConnectingState { log::error!( "{}", error.display_chain_with_msg( - "Failed to register addresses with split tunnel driver" + "Failed to reset addresses in split tunnel driver" ) ); diff --git a/talpid-core/src/tunnel_state_machine/disconnected_state.rs b/talpid-core/src/tunnel_state_machine/disconnected_state.rs index 24320a961c..9b5d51bd51 100644 --- a/talpid-core/src/tunnel_state_machine/disconnected_state.rs +++ b/talpid-core/src/tunnel_state_machine/disconnected_state.rs @@ -55,9 +55,8 @@ impl DisconnectedState { if let Err(error) = shared_values.split_tunnel.set_tunnel_addresses(None) { log::error!( "{}", - error.display_chain_with_msg( - "Failed to register addresses with split tunnel driver" - ) + error + .display_chain_with_msg("Failed to reset addresses in split tunnel driver") ); } } |
