diff --git a/rust/client-shared/src/eventloop.rs b/rust/client-shared/src/eventloop.rs index 9ec4867c3..0e9c99aba 100644 --- a/rust/client-shared/src/eventloop.rs +++ b/rust/client-shared/src/eventloop.rs @@ -151,6 +151,10 @@ impl Eventloop { return Ok(()); } Err(e) => { + if !e.is_authentication_error() { + tracing::error!("Fatal tunnel error: {e:#}"); + } + // Ignore error from shutdown to not obscure the original error. let _ = self.shut_down_tunnel().await;