diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 08:57:39 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 08:57:39 +0000 |
commit | 7e91b2298d3e3f0cced47fa32697b2b095638489 (patch) | |
tree | d3a8889094feab2dab23bb9c6c72b0bc9bceef73 | |
parent | 722e691af737862b32515fd5644feb33547eff8f (diff) | |
download | rsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.tar.gz rsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.tar.xz rsyslog-7e91b2298d3e3f0cced47fa32697b2b095638489.zip |
removed some left-over unnecessary dbgprintf's
-rw-r--r-- | action.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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! */ |