From c48c33d935c2f02ef4eaaac30d8ca4c01f4a6186 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 29 Oct 2024 01:04:49 +1100 Subject: [PATCH] chore(gateway): lower "Tunnel error" to debug (#7165) This is spamming Sentry and we have almost reached our rate limit for the amounts of events ingested. --- rust/gateway/src/eventloop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/gateway/src/eventloop.rs b/rust/gateway/src/eventloop.rs index 3852567bd..7a60fb00d 100644 --- a/rust/gateway/src/eventloop.rs +++ b/rust/gateway/src/eventloop.rs @@ -77,7 +77,7 @@ impl Eventloop { continue; } Poll::Ready(Err(e)) => { - tracing::warn!(error = std_dyn_err(&e), "Tunnel error"); + tracing::debug!(error = std_dyn_err(&e), "Tunnel error"); continue; } Poll::Pending => {}