chore(connlib): log fatal tunnel errors (#10768)

Resolves: #10765
This commit is contained in:
Thomas Eizinger
2025-10-31 18:56:36 +11:00
committed by GitHub
parent ac7aaf820c
commit 3811a793f0

View File

@@ -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;