]> git.meshlink.io Git - meshlink/commitdiff
Remove debug messages printed to stderr.
authorGuus Sliepen <guus@meshlink.io>
Tue, 20 Nov 2018 14:59:34 +0000 (15:59 +0100)
committerGuus Sliepen <guus@meshlink.io>
Tue, 20 Nov 2018 14:59:34 +0000 (15:59 +0100)
src/meshlink.c
src/meta.c
src/sptps.c

index 1bb403f33d4cbfc7929f29ccb46ede5849a079ff..b84465822c1f624b625eb7895e47233b30e9c64a 100644 (file)
@@ -392,8 +392,6 @@ static char *get_my_hostname(meshlink_handle_t *mesh, uint32_t flags) {
                flags |= MESHLINK_INVITE_IPV4 | MESHLINK_INVITE_IPV6;
        }
 
-       fprintf(stderr, "flags = %u\n", flags);
-
        // Add local addresses if requested
        if(flags & MESHLINK_INVITE_LOCAL) {
                if(flags & MESHLINK_INVITE_IPV4) {
index 68450166c0e844e27ad83ceaff9230f0245828a1..aa3499e95b8f1b3a059fc820b0a2fa885acc0873 100644 (file)
@@ -138,7 +138,6 @@ bool receive_meta(meshlink_handle_t *mesh, connection_t *c) {
                        int left = c->inbuf.len - c->inbuf.offset;
 
                        if(left > 0) {
-                               fprintf(stderr, "GOT A LITTLE MORE\n");
                                return sptps_receive_data(&c->sptps, buffer_read(&c->inbuf, left), left);
                        } else {
                                return true;
index f44374ee4bf472b7fea3127ff3b777ffa26aa517..a2eb3883280c5683ab0d9703ae66aa5a712b643d 100644 (file)
@@ -63,7 +63,7 @@ void sptps_log_stderr(sptps_t *s, int s_errno, const char *format, va_list ap) {
        fputc('\n', stderr);
 }
 
-void (*sptps_log)(sptps_t *s, int s_errno, const char *format, va_list ap) = sptps_log_stderr;
+void (*sptps_log)(sptps_t *s, int s_errno, const char *format, va_list ap) = sptps_log_quiet;
 
 // Log an error message.
 static bool error(sptps_t *s, int s_errno, const char *format, ...) {