From: Mike Brady Date: Sun, 22 Jul 2018 15:13:49 +0000 (+0100) Subject: Quieten a few debug messages X-Git-Tag: 3.3RC0~286^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=703ab8e5562d57db2e1bb08c357804627b3eea53;p=thirdparty%2Fshairport-sync.git Quieten a few debug messages --- diff --git a/dacp.c b/dacp.c index 80ccb2ed..090bb526 100644 --- 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); }