(redis_subscribe) in verbose mode, received message gets printed with a 'received: ' header

This commit is contained in:
Benjamin Sergeant 2019-03-29 09:35:19 -07:00
parent f0f54434cb
commit c604c4591f

View File

@ -46,7 +46,7 @@ namespace ix
{
if (verbose)
{
std::cout << message << std::endl;
std::cout << "received: " << message << std::endl;
}
msgPerSeconds++;
@ -84,4 +84,3 @@ namespace ix
return 0;
}
}