From 48857d3bc8b864e3d951bf2f3835e4efdfa739f7 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 13 Dec 2024 16:41:28 +1100 Subject: [PATCH] chore(relay): downgrade allocation mismatch warn on CHANNEL_BIND (#7505) This code-path is handled gracefully in `connlib`, no need to issue a warning here. --- rust/relay/src/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/relay/src/server.rs b/rust/relay/src/server.rs index 80708499b..79c3c7256 100644 --- a/rust/relay/src/server.rs +++ b/rust/relay/src/server.rs @@ -655,7 +655,7 @@ where let Some(allocation) = self.allocations.get_mut(&sender) else { let (error_response, msg) = make_error_response(AllocationMismatch, &request); - tracing::warn!(target: "relay", "{msg}: Sender doesn't have an allocation"); + tracing::info!(target: "relay", "{msg}: Sender doesn't have an allocation"); return Err(error_response); };