summaryrefslogtreecommitdiffstats
path: root/runtime/queue.c
diff options
context:
space:
mode:
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;
}