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.
This commit is contained in:
Thomas Eizinger
2024-12-13 16:41:28 +11:00
committed by GitHub
parent 73625e4669
commit 48857d3bc8

View File

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