summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-07-14 11:39:58 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-07-14 11:39:58 +0200
commita6de2e589254dbfffd2746d8efbefc04f8ed3725 (patch)
treef67913eeaecbe2b137f4b43c3df082149f7ee8aa /tools
parent93fed4bd309f658a23cff3b3133ab124ee226557 (diff)
downloadrsyslog-a6de2e589254dbfffd2746d8efbefc04f8ed3725.tar.gz
rsyslog-a6de2e589254dbfffd2746d8efbefc04f8ed3725.tar.xz
rsyslog-a6de2e589254dbfffd2746d8efbefc04f8ed3725.zip
cleanup of debugging messages (removed no longer needed ones)
Diffstat (limited to 'tools')
-rw-r--r--tools/syslogd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c
index b005b6d0..3f97a70f 100644
--- a/tools/syslogd.c
+++ b/tools/syslogd.c
@@ -908,8 +908,6 @@ logmsgInternal(int iErr, int pri, uchar *msg, int flags)
datetime.getCurrTime(&(pMsg->tTIMESTAMP)); /* use the current time! */
flags |= INTERNAL_MSG;
-RUNLOG_VAR("%d", bHaveMainQueue);
-RUNLOG_VAR("%p", pMsg);
if(bHaveMainQueue == 0) { /* not yet in queued mode */
iminternalAddMsg(pri, pMsg, flags);
} else {
@@ -1628,14 +1626,10 @@ logmsg(msg_t *pMsg, int flags)
/* ---------------------- END PARSING ---------------- */
-RUNLOG;
/* now submit the message to the main queue - then we are done */
pMsg->msgFlags = flags;
-RUNLOG;
MsgPrepareEnqueue(pMsg);
-RUNLOG;
queueEnqObj(pMsgQueue, pMsg->flowCtlType, (void*) pMsg);
-RUNLOG;
ENDfunc
}