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.
This commit is contained in:
Thomas Eizinger
2024-10-29 01:04:49 +11:00
committed by GitHub
parent 51d92265f4
commit c48c33d935

View File

@@ -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 => {}