summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-02-22 13:58:54 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2013-02-22 13:58:54 +0100
commit7804c0a659ee8cac40bfcce68656a9faf0cabd93 (patch)
tree8a2be7ca50302dbbfd43fd153ef664550700aa0b
parent3ef6d4b553a19b00bac47fdae8917672ec2c2f29 (diff)
Disable printfs
-rw-r--r--hugin_syslog.c6
1 files 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