]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten a few debug messages
authorMike Brady <mikebrady@eircom.net>
Sun, 22 Jul 2018 15:13:49 +0000 (16:13 +0100)
committerMike Brady <mikebrady@eircom.net>
Sun, 22 Jul 2018 15:13:49 +0000 (16:13 +0100)
dacp.c

diff --git a/dacp.c b/dacp.c
index 80ccb2ed300358722fd2b073501fac9f3bebb867..090bb52669bea33601eec56ab9f5e29792c77908 100644 (file)
--- a/dacp.c
+++ b/dacp.c
@@ -123,31 +123,31 @@ static pthread_mutex_t dacp_server_information_lock;
 static pthread_cond_t dacp_server_information_cv = PTHREAD_COND_INITIALIZER;
 
 void addrinfo_cleanup(void *arg) {
-  debug(1, "addrinfo cleanup called.");
+  // debug(1, "addrinfo cleanup called.");
   struct addrinfo **info = (struct addrinfo **)arg;
   freeaddrinfo(*info);
 }
 
 void mutex_lock_cleanup(void *arg) {
-  debug(1, "mutex lock cleanup called.");
+  // debug(1, "mutex lock cleanup called.");
   pthread_mutex_t *m = (pthread_mutex_t *)arg;
   pthread_mutex_unlock(m);
 }
 
 void connect_cleanup(void *arg) {
-  debug(1, "connect cleanup called.");
+  // debug(1, "connect cleanup called.");
   int *fd = (int *)arg;
   close(*fd);
 }
 
 void http_cleanup(void *arg) {
-  debug(1, "http cleanup called.");
+  // debug(1, "http cleanup called.");
   struct http_roundtripper *rt = (struct http_roundtripper *)arg;
   http_free(rt);
 }
 
 void malloc_cleanup(void *arg) {
-  debug(1, "malloc cleanup called.");
+  // debug(1, "malloc cleanup called.");
   free(arg);
 }