From 94ff3d5a5f5270e233a23baa1be92ceae127cdd0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 23 Oct 2023 13:53:39 +0200 Subject: [PATCH] Connection: do not dump all packets (not necessary anymore at this stage) --- src/Connection.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Connection.cxx b/src/Connection.cxx index 97fda47..8d536ce 100644 --- a/src/Connection.cxx +++ b/src/Connection.cxx @@ -79,8 +79,6 @@ inline void Connection::HandlePacket(SSH::MessageNumber msg, std::span payload) { - fmt::print(stderr, "Packet msg={} size={}\n", (int)msg, payload.size()); - switch (msg) { case SSH::MessageNumber::SERVICE_REQUEST: HandleServiceRequest(payload);