From 0e931e20293f9511bc585f8e2226dcda23a84f15 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 21:54:28 -0500 Subject: [PATCH] feat: remove debug logging for protocol version signature computation --- src/NLPacketCodec.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/NLPacketCodec.cpp b/src/NLPacketCodec.cpp index 4b20468..f15cb95 100644 --- a/src/NLPacketCodec.cpp +++ b/src/NLPacketCodec.cpp @@ -468,13 +468,6 @@ std::vector NLPacketCodec::computeProtocolVersionSignature() { 0xeb, 0x16, 0x00, 0xe7, 0x98, 0xdc, 0x5e, 0x03, 0xc7, 0x55, 0xa9, 0x68, 0xdc, 0x16, 0xb7, 0xfc }; - - std::cout << "[DEBUG] Using protocol signature: "; - for (uint8_t byte : signature) { - std::cout << std::hex << std::setw(2) << std::setfill('0') << (int)byte; - } - std::cout << std::dec << std::endl; - return signature; }