diff options
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/connecting_state.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/talpid-core/src/tunnel_state_machine/connecting_state.rs b/talpid-core/src/tunnel_state_machine/connecting_state.rs index e56dfff9ae..da71d392f3 100644 --- a/talpid-core/src/tunnel_state_machine/connecting_state.rs +++ b/talpid-core/src/tunnel_state_machine/connecting_state.rs @@ -99,6 +99,10 @@ impl ConnectingState { let start = Instant::now(); let block_reason = Self::wait_for_tunnel_monitor(tunnel_monitor); + debug!( + "Tunnel monitor exited with block reason: {:?}", + block_reason + ); if block_reason.is_none() { if let Some(remaining_time) = MIN_TUNNEL_ALIVE_TIME.checked_sub(start.elapsed()) { |
