From 7804c0a659ee8cac40bfcce68656a9faf0cabd93 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 22 Feb 2013 13:58:54 +0100 Subject: Disable printfs --- hugin_syslog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hugin_syslog.c b/hugin_syslog.c index 75e2559..a2bd334 100644 --- a/hugin_syslog.c +++ b/hugin_syslog.c @@ -86,7 +86,7 @@ void hug_syslog_init(const char* host, int port) wsastartup(); #endif - printf("Initializing syslog module remote %s:%d\n", host, port); + // printf("Initializing syslog module remote %s:%d\n", host, port); if ( (hug_syslog_sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) { fprintf(stderr, "Failed to create socket\n"); return; @@ -120,7 +120,7 @@ void hug_syslog_init(const char* host, int port) strcpy(execname, "\0"); } - printf("\tRunning as %s with pid %d\n", execname, pid); + // printf("\tRunning as %s with pid %d\n", execname, pid); } /* @@ -244,7 +244,7 @@ void hug_syslog_output(char* msg) } void hug_syslog_close() { - printf("Closing syslog module\n"); + // printf("Closing syslog module\n"); if(hug_syslog_sock < 0) return; #ifdef WIN32 -- cgit v1.2.3