From 3e657c1e02c4675dadfe641937ee129436f15c83 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 18:33:09 -0500 Subject: [PATCH] refactor: remove debug output from computeProtocolVersionSignature function --- src/NLPacketCodec.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/NLPacketCodec.cpp b/src/NLPacketCodec.cpp index 0d36c2c..d050358 100644 --- a/src/NLPacketCodec.cpp +++ b/src/NLPacketCodec.cpp @@ -468,15 +468,11 @@ std::vector NLPacket::computeProtocolVersionSignature() { uint8_t numPacketTypes = static_cast(numPacketTypesInt); buffer.push_back(numPacketTypes); - // Debug: print version table - std::cout << "[OverteClient] Computing protocol signature with " << (int)numPacketTypes << " packet types:" << std::endl; - // Write version for each packet type for (uint8_t i = 0; i < numPacketTypes; i++) { PacketType type = static_cast(i); uint8_t version = versionForPacketType(type); buffer.push_back(version); - std::cout << " Type " << (int)i << ": version " << (int)version << std::endl; } // Compute MD5 hash