Remove all DEBUG_OUTPUT references

It turnes out it is not as useful as in the writer project.
This commit is contained in:
2020-05-11 13:52:29 +02:00
parent 92b4041070
commit 0ca06b8e7a
8 changed files with 0 additions and 209 deletions
-9
View File
@@ -11,15 +11,6 @@ UdpRecvModule::UdpRecvModule(
queue_(queue),
is_receiving_(true)
{
#ifdef DEBUG_OUTPUT
using namespace date;
using namespace chrono;
cout << "[" << system_clock::now() << "]";
cout << "[UdpRecvModule::UdpRecvModule]";
cout << " Starting with ";
cout << "udp_port " << udp_port << endl;
#endif
receiving_thread_ = thread(
&UdpRecvModule::receive_thread, this,
udp_port);