remove accidental debug log (#4574)

This commit is contained in:
Raphael Darley 2024-08-21 09:52:08 -07:00 committed by GitHub
parent f2ccedb8c1
commit bc6ad3a983
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -267,9 +267,6 @@ async fn router_handle_response(
state: &mut RouterState, state: &mut RouterState,
endpoint: &Endpoint, endpoint: &Endpoint,
) -> HandleResult { ) -> HandleResult {
if let Message::Binary(b) = &response {
error!(?b);
}
match Response::try_from(&response, endpoint.supports_revision) { match Response::try_from(&response, endpoint.supports_revision) {
Ok(option) => { Ok(option) => {
// We are only interested in responses that are not empty // We are only interested in responses that are not empty