From 5c39216c44ef153c35809cb9734ed71673a13c7d Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Fri, 14 Aug 2026 02:27:22 +0200 Subject: [PATCH] Make log more readable --- src/TNetwork.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TNetwork.cpp b/src/TNetwork.cpp index dfcb712..f22a665 100644 --- a/src/TNetwork.cpp +++ b/src/TNetwork.cpp @@ -201,7 +201,8 @@ void TNetwork::UDPServerMain() { beammp_debugf("Invalid size for UDP value. IP: {} ID: {}, Size: {}", remote_client_ep.address().to_string(), ID, Data.size()); std::stringstream hexData; for (auto c : Data) { - hexData << std::hex << std::setw(2) << std::setfill('0') << c; + hexData << std::hex << std::setw(2) << std::setfill('0') << static_cast(c); + hexData << " "; } beammp_debug(hexData.str()); return false;