summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--src/dabInputZmq.cpp3
2 files changed, 1 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 24567de..ea4aa33 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,4 @@ config.h.in
cscope.out
ctags
tags
+.clang_complete
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;