summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-13 08:57:39 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-13 08:57:39 +0000
commit7e91b2298d3e3f0cced47fa32697b2b095638489 (patch)
treed3a8889094feab2dab23bb9c6c72b0bc9bceef73 /action.c
parent722e691af737862b32515fd5644feb33547eff8f (diff)
downloadrsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.tar.gz
rsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.tar.xz
rsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.zip
removed some left-over unnecessary dbgprintf's
Diffstat (limited to 'action.c')
-rw-r--r--action.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/action.c b/action.c
index f655fc0f..1f724a59 100644
--- a/action.c
+++ b/action.c
@@ -367,11 +367,6 @@ actionCallDoAction(action_t *pAction, msg_t *pMsg)
for(i = 0 ; i < pAction->iNumTpls ; ++i) {
CHKiRet(tplToString(pAction->ppTpl[i], pMsg, &(ppMsgs[i])));
}
-for(i = 0 ; i < pAction->iNumTpls ; ++i) {
-RUNLOG_VAR("%d", i);
-RUNLOG_VAR("%s", ppMsgs[i]);
-RUNLOG_VAR("%p", &ppMsgs[i]);
-}
iRetries = 0;
/* We now must guard the output module against execution by multiple threads. The
* plugin interface specifies that output modules must not be thread-safe (except
@@ -408,11 +403,6 @@ RUNLOG_VAR("%p", &ppMsgs[i]);
dbgprintf("Action requested to be suspended, done that.\n");
actionSuspend(pAction);
}
-for(i = 0 ; i < pAction->iNumTpls ; ++i) {
-RUNLOG_VAR("%d", i);
-RUNLOG_VAR("%s", ppMsgs[i]);
-RUNLOG_VAR("%p", &ppMsgs[i]);
-}
}
} while(iRet == RS_RET_SUSPENDED && (pAction->iResumeRetryCount == -1 || iRetries < pAction->iResumeRetryCount)); /* do...while! */