summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-06-21 11:53:52 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-06-21 11:53:52 +0200
commitdc653ed74f2299b2023da9a30c2f5d03c23e71ab (patch)
treef7595c628a5148a77767321ca47e9f4c2c05d90c /action.c
parent0577f7f1821bd194a59ad70ce4daae2c5ed64f54 (diff)
downloadrsyslog-dc653ed74f2299b2023da9a30c2f5d03c23e71ab.tar.gz
rsyslog-dc653ed74f2299b2023da9a30c2f5d03c23e71ab.tar.xz
rsyslog-dc653ed74f2299b2023da9a30c2f5d03c23e71ab.zip
minor cleanup
Diffstat (limited to 'action.c')
-rw-r--r--action.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/action.c b/action.c
index 4df55ce0..c5bb9088 100644
--- a/action.c
+++ b/action.c
@@ -819,7 +819,6 @@ finishBatch(action_t *pThis, batch_t *pBatch)
ASSERT(pThis != NULL);
-dbgprintf("ZZZ: finishBatch called, eState %d\n", pThis->eState);
if(pThis->eState == ACT_STATE_RDY) {
/* we just need to flag the batch as commited */
FINALIZE; /* nothing to do */
@@ -834,7 +833,6 @@ dbgprintf("ZZZ: finishBatch called, eState %d\n", pThis->eState);
/* flag messages as committed */
for(i = 0 ; i < pBatch->nElem ; ++i) {
batchSetElemState(pBatch, i, BATCH_STATE_COMM);
-dbgprintf("ZZZ: finishBatch commits element %d\n", i);
}
break;
case RS_RET_SUSPENDED:
@@ -972,7 +970,6 @@ dbgprintf("ZZZ1: submitBatch, nElem %d\n", nElem);
} else if(localRet == RS_RET_ACTION_FAILED) {
/* in this case, the whole batch can not be processed */
for(i = 0 ; i < nElem ; ++i) {
-dbgprintf("ZZZ2: setting batch state for item %d\n", i);
batchSetElemState(pBatch, i, BATCH_STATE_BAD);
}
bDone = 1;