debug(3, "DACP Conversation Lock Mutex Destroyed");
pthread_mutex_destroy(&dacp_conversation_lock);
pthread_cond_destroy(&dacp_server_information_cv);
- debug(1, "DACP Server Information Condition Variable destroyed.");
+ debug(3, "DACP Server Information Condition Variable destroyed.");
}
}
static void avahi_unregister(void) {
// debug(1, "avahi_unregister.");
if (tpoll) {
- debug(1, "avahi: stop the threaded poll.");
+ debug(2, "avahi: stop the threaded poll.");
avahi_threaded_poll_stop(tpoll);
if (client) {
- debug(1, "avahi: free the client.");
+ debug(2, "avahi: free the client.");
avahi_client_free(client);
client = NULL;
} else {
debug(1, "avahi attempting to unregister a NULL client");
}
- debug(1, "avahi: free the threaded poll.");
+ debug(2, "avahi: free the threaded poll.");
avahi_threaded_poll_free(tpoll);
tpoll = NULL;
} else {
}
if (service_name) {
- debug(1, "avahi: free the service name.");
+ debug(2, "avahi: free the service name.");
free(service_name);
} else
debug(1, "avahi attempt to free NULL service name");
}
avahi_threaded_poll_unlock(tpoll);
free(dbs->dacp_id);
- debug(1, "avahi_dacp_monitor_stop Avahi DACP monitor successfully stopped");
+ debug(2, "avahi_dacp_monitor_stop Avahi DACP monitor successfully stopped");
}
mdns_backend mdns_avahi = {.name = "avahi",