mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-30 14:22:23 +02:00
Add end line to debug output
This commit is contained in:
@@ -24,6 +24,7 @@ LiveRecvModule::LiveRecvModule(
|
||||
using namespace chrono;
|
||||
cout << "[" << system_clock::now() << "]";
|
||||
cout << "[LiveRecvModule::LiveRecvModule]";
|
||||
cout << endl;
|
||||
#endif
|
||||
|
||||
receiving_thread_ = thread(
|
||||
@@ -58,6 +59,8 @@ void* LiveRecvModule::connect_socket(size_t module_id)
|
||||
ipc_addr << ipc_prefix_ << module_id;
|
||||
const auto ipc = ipc_addr.str();
|
||||
|
||||
cout << "ipc " << ipc << endl;
|
||||
|
||||
if (zmq_connect(sock, ipc.c_str()) != 0) {
|
||||
throw runtime_error(zmq_strerror(errno));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user