diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-01-27 14:29:48 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-01-27 14:29:48 +0100 |
commit | cb843f8b788644ea441e9f122468f442ef3d9a0b (patch) | |
tree | 3c321d85762709769d7fa10db82d1f8ab6a81184 /runtime/ruleset.c | |
parent | 1773bfa14b271d3bcd7fd96bba0bae8028280b75 (diff) | |
download | rsyslog-cb843f8b788644ea441e9f122468f442ef3d9a0b.tar.gz rsyslog-cb843f8b788644ea441e9f122468f442ef3d9a0b.tar.bz2 rsyslog-cb843f8b788644ea441e9f122468f442ef3d9a0b.zip |
bugfix: rsyslog aborted during startup if there is an error in loading an action
and legacy configuration mode is used
Diffstat (limited to 'runtime/ruleset.c')
-rw-r--r-- | runtime/ruleset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ruleset.c b/runtime/ruleset.c index ceab08d1..00d96714 100644 --- a/runtime/ruleset.c +++ b/runtime/ruleset.c @@ -266,7 +266,7 @@ addRule(ruleset_t *pThis, rule_t **ppRule) rule.Destruct(ppRule); } else { CHKiRet(llAppend(&pThis->llRules, NULL, *ppRule)); - dbgprintf("selector line successfully processed\n"); + dbgprintf("selector line successfully processed, %d actions\n", iActionCnt); } finalize_it: |