summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
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
}