From f17ea10687fdbf067f8a8aae99de014615af5ec5 Mon Sep 17 00:00:00 2001 From: susisstrolch Date: Tue, 19 Jan 2016 08:48:39 +0100 Subject: [PATCH] syslog.c: remove superfluous DBG message --- syslog/syslog.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syslog/syslog.c b/syslog/syslog.c index f429382..5f60252 100644 --- a/syslog/syslog.c +++ b/syslog/syslog.c @@ -360,7 +360,8 @@ syslog_add_entry(syslog_entry_t *entry) pse = pse->next; pse->next = entry; // append msg to syslog queue } - DBG("%p %lu %d %s\n", entry, entry->msgid, system_get_free_heap_size(), entry->datagram); + // Debug: show queue addr, current msgid, avail. heap and syslog datagram + // DBG("%p %lu %d %s\n", entry, entry->msgid, system_get_free_heap_size(), entry->datagram); // ensure we have sufficient heap for the rest of the system if (system_get_free_heap_size() < syslogHost.min_heap_size) {