From 0554b8a45f77d2aa5f0930886f242f625c4d71bf Mon Sep 17 00:00:00 2001 From: Dimitrios Stoupis <dimitris.apple@gmail.com> Date: Sun, 2 Dec 2018 12:51:27 +0000 Subject: [PATCH] Comment out the decimal string formatting and add hex --- src/Platform/x86/Service.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Platform/x86/Service.cpp b/src/Platform/x86/Service.cpp index 07403e43..ff9d9d95 100644 --- a/src/Platform/x86/Service.cpp +++ b/src/Platform/x86/Service.cpp @@ -4,7 +4,9 @@ void Service::storeMessage(const Message &message) { // Just print it to the screen - std::cout << "New " << ((message.packetType == Message::TM) ? "TM" : "TC") << "[" << std::dec + std::cout << "New " << ((message.packetType == Message::TM) ? "TM" : "TC") << "[" + << std::hex + // << std::dec << static_cast<int>(message.serviceType) << "," << static_cast<int>(message.messageType) << "] message!\n"; //std::cout << std::hex << std::setfill('0') << std::setw(2); -- GitLab