summaryrefslogtreecommitdiffstats
path: root/src/dabInputZmq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dabInputZmq.cpp')
-rw-r--r--src/dabInputZmq.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dabInputZmq.cpp b/src/dabInputZmq.cpp
index 3efa044..13b812e 100644
--- a/src/dabInputZmq.cpp
+++ b/src/dabInputZmq.cpp
@@ -121,8 +121,6 @@ int dabInputZmqReadFrame(dabInputOperations* ops, void* args, void* buffer, int
// Get new ZMQ messages
int rc = dabInputZmqReadFromSocket(input, size);
- if (rc > 0)
- etiLog.print(TcpLog::NOTICE, "inputZMQ rc %d, %d\n", rc, input->frame_buffer.size());
if (input->prebuffering > 0) {
if (rc > 0)
@@ -146,7 +144,6 @@ int dabInputZmqReadFrame(dabInputOperations* ops, void* args, void* buffer, int
{
char* newframe = input->frame_buffer.front();
memcpy(buffer, newframe, size);
- etiLog.print(TcpLog::NOTICE, "inputZMQ got %d, %d\n", rc, input->frame_buffer.size());
delete[] newframe;
input->frame_buffer.pop_front();
return size;