summaryrefslogtreecommitdiff
path: root/hugin_syslog.c
diff options
context:
space:
mode:
Diffstat (limited to 'hugin_syslog.c')
-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