diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 16:14:27 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 16:14:27 +0200 |
commit | 3885eb7a350389c3f4dd823351ec3de34382615d (patch) | |
tree | 908a0c291ee7c66fcb288d73faadcc87d275e647 /runtime/queue.c | |
parent | a09494ac1357b4ec6057c63f4f56890772f548dd (diff) | |
parent | 743680f78f3e98d9c693d2394d13b6b8ac80a637 (diff) | |
download | rsyslog-3885eb7a350389c3f4dd823351ec3de34382615d.tar.gz rsyslog-3885eb7a350389c3f4dd823351ec3de34382615d.tar.bz2 rsyslog-3885eb7a350389c3f4dd823351ec3de34382615d.zip |
Merge branch 'v7-stable'
Diffstat (limited to 'runtime/queue.c')
-rw-r--r-- | runtime/queue.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/queue.c b/runtime/queue.c index cfb455da..5666c465 100644 --- a/runtime/queue.c +++ b/runtime/queue.c @@ -2148,12 +2148,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) |