diff options
author | Michael Biebl <biebl@debian.org> | 2013-09-03 22:42:46 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-09-03 22:42:46 +0200 |
commit | 0c656246c6818b9fd0426411ed1cf926fbbc907d (patch) | |
tree | ca5db297c70a912d88b42df3c56a53c304aef5a3 /runtime/queue.c | |
parent | a400789c367fd3cd8d0f9588ca2af72dcac47c9c (diff) | |
download | rsyslog-0c656246c6818b9fd0426411ed1cf926fbbc907d.tar.gz |
Imported Upstream version 7.4.4upstream/7.4.4
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 abe2be0..935a810 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) |