From 527d735500095a3d2eb48e76bef8aa34d2b82c8b Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 31 Dec 2009 09:42:52 -0800 Subject: [PATCH] Suppress these debug lines. --- src/util-debug.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/util-debug.c b/src/util-debug.c index 755bf79d19..9ffd30b86c 100644 --- a/src/util-debug.c +++ b/src/util-debug.c @@ -1039,13 +1039,11 @@ void SCLogLoadConfig(void) if (strcmp(interface, "console") == 0) { /* No other lookups required for console logging. */ - printf("Setting up console logging: log_level=%s.\n", - log_level); + /* \todo Setup console logging... */ } else if (strcmp(interface, "syslog") == 0) { facility = (char *)ConfNodeLookupChildValue(output, "facility"); - printf("Setting up syslog logging: log_level=%s, facility=%s.\n", - log_level, facility); + /* \todo Setup syslog logging. */ } else { SCLogWarning(SC_UNIMPLEMENTED,