From 09c108cd20aedaadc3da8fce29910a831b63d74e Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 31 Jul 2024 18:07:45 -0700 Subject: [PATCH] fix(connlib): make Relay connectivity error log at ERROR level (#6105) This almost always indicate a user-impacting connectivity error. For customers troubleshooting their Gateways by greping for `ERROR`, this will make these much easier to find. --------- Signed-off-by: Jamil --- rust/connlib/snownet/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/connlib/snownet/src/node.rs b/rust/connlib/snownet/src/node.rs index 7e01c29f9..25640b524 100644 --- a/rust/connlib/snownet/src/node.rs +++ b/rust/connlib/snownet/src/node.rs @@ -449,7 +449,7 @@ where self.allocations .retain(|rid, allocation| match allocation.can_be_freed() { Some(e) => { - tracing::info!(%rid, "Disconnecting from relay; {e}"); + tracing::error!(%rid, "Disconnecting from relay; {e}"); false }