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
-25
View File
@@ -36,16 +36,6 @@ void sf_live (
MODULE_N_BYTES,
0);
#ifdef DEBUG_OUTPUT
using namespace date;
using namespace chrono;
cout << "[" << system_clock::now() << "]";
cout << "[sf_live::sf_live]";
cout << " Sent pulse_id ";
cout << current_pulse_id << endl;
#endif
current_pulse_id++;
}
@@ -74,21 +64,6 @@ int main (int argc, char *argv[]) {
ipc_stream << BUFFER_LIVE_IPC_URL << (int)source_id;
const auto ipc_address = ipc_stream.str();
#ifdef DEBUG_OUTPUT
using namespace date;
using namespace chrono;
cout << "[" << system_clock::now() << "]";
cout << "[sf_live::main]";
cout << " device " << device;
cout << " channel_name " << channel_name;
cout << " source_id " << source_id;
cout << " start_pulse_id " << start_pulse_id;
cout << " ipc_address " << ipc_address;
cout << endl;
#endif
auto ctx = zmq_ctx_new();
auto socket = zmq_socket(ctx, ZMQ_PUSH);