Skip to content
Snippets Groups Projects
Unverified Commit 0554b8a4 authored by Dimitrios Stoupis's avatar Dimitrios Stoupis
Browse files

Comment out the decimal string formatting and add hex

parent 62d561e7
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment