summaryrefslogtreecommitdiffstats
path: root/runtime/queue.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2013-07-19 16:14:07 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2013-07-19 16:14:07 +0200
commit743680f78f3e98d9c693d2394d13b6b8ac80a637 (patch)
tree7f278b0a27d25db99a66305d45675fe5e1215a67 /runtime/queue.c
parent6356763f8e8420d6e0077052636e1bc1ea225d89 (diff)
downloadrsyslog-743680f78f3e98d9c693d2394d13b6b8ac80a637.tar.gz
rsyslog-743680f78f3e98d9c693d2394d13b6b8ac80a637.tar.bz2
rsyslog-743680f78f3e98d9c693d2394d13b6b8ac80a637.zip
debug: improve queue startup debug output
Diffstat (limited to 'runtime/queue.c')
-rw-r--r--runtime/queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/queue.c b/runtime/queue.c
index abe2be06..935a8106 100644
--- a/runtime/queue.c
+++ b/runtime/queue.c
@@ -2126,12 +2126,12 @@ qqueueStart(qqueue_t *pThis) /* this is the ConstructionFinalizer */
pThis->iFullDlyMrk = wrk;
}
- DBGOPRINT((obj_t*) pThis, "type %d, enq-only %d, disk assisted %d, maxFileSz %lld, lqsize %d, pqsize %d, child %d, "
- "full delay %d, light delay %d, deq batch size %d starting\n",
- pThis->qType, pThis->bEnqOnly, pThis->bIsDA, pThis->iMaxFileSize,
+ DBGOPRINT((obj_t*) pThis, "type %d, enq-only %d, disk assisted %d, maxFileSz %lld, maxQSize %d, lqsize %d, pqsize %d, child %d, "
+ "full delay %d, light delay %d, deq batch size %d starting, high wtrrmrk %d, low wtrmrk %d\n",
+ pThis->qType, pThis->bEnqOnly, pThis->bIsDA, pThis->iMaxFileSize, pThis->iMaxQueueSize,
getLogicalQueueSize(pThis), getPhysicalQueueSize(pThis),
pThis->pqParent == NULL ? 0 : 1, pThis->iFullDlyMrk, pThis->iLightDlyMrk,
- pThis->iDeqBatchSize);
+ pThis->iDeqBatchSize, pThis->iHighWtrMrk, pThis->iLowWtrMrk);
pThis->bQueueStarted = 1;
if(pThis->qType == QUEUETYPE_DIRECT)