summaryrefslogtreecommitdiffstats
path: root/runtime/queue.c
diff options
context:
space:
mode:
authorAndre Lorbach <alorbach@adiscon.com>2011-08-18 13:15:10 +0200
committerAndre Lorbach <alorbach@adiscon.com>2011-08-18 13:15:10 +0200
commit154747929f87010b444af2d552f980daafe451e6 (patch)
treec54388c14304522f5ed795011d7b3633118b6e96 /runtime/queue.c
parent47ed9921b6c9fe49d4aadf244f7df1ce4d05a5b3 (diff)
downloadrsyslog-154747929f87010b444af2d552f980daafe451e6.tar.gz
rsyslog-154747929f87010b444af2d552f980daafe451e6.tar.xz
rsyslog-154747929f87010b444af2d552f980daafe451e6.zip
removed debug code from action.c and runtime/queue.c after testing
Diffstat (limited to 'runtime/queue.c')
-rw-r--r--runtime/queue.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/queue.c b/runtime/queue.c
index 554c6a43..9012abeb 100644
--- a/runtime/queue.c
+++ b/runtime/queue.c
@@ -891,8 +891,6 @@ rsRetVal qqueueEnqObjDirectBatch(qqueue_t *pThis, batch_t *pBatch)
ASSERT(pThis != NULL);
-dbgprintf("XXXXX: pre call consumer\n");
-displayBatchState(pBatch);
/* calling the consumer is quite different here than it is from a worker thread */
/* we need to provide the consumer's return value back to the caller because in direct
* mode the consumer probably has a lot to convey (which get's lost in the other modes
@@ -903,8 +901,6 @@ displayBatchState(pBatch);
*/
iRet = pThis->pConsumer(pThis->pUsr, pBatch, &pThis->bShutdownImmediate);
-dbgprintf("XXXXX: post call consumer\n");
-displayBatchState(pBatch);
RETiRet;
}