Skip to content

Commit

Permalink
Quieten some debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Dec 12, 2017
1 parent 346ec1e commit 6ac6c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mdns_avahi.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface, Avah
avahi_threaded_poll_quit(tpoll);
break;
case AVAHI_BROWSER_NEW:
debug(1, "(Browser) NEW: service '%s' of type '%s' in domain '%s'.", name, type, domain);
debug(3, "(Browser) NEW: service '%s' of type '%s' in domain '%s'.", name, type, domain);
/* We ignore the returned resolver object. In the callback
function we free it. If the server is terminated before
the callback function is called the server will free
Expand All @@ -133,7 +133,7 @@ static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface, Avah
avahi_strerror(avahi_client_errno(dbs->service_client)));
break;
case AVAHI_BROWSER_REMOVE:
debug(1, "(Browser) REMOVE: service '%s' of type '%s' in domain '%s'.", name, type, domain);
debug(3, "(Browser) REMOVE: service '%s' of type '%s' in domain '%s'.", name, type, domain);
char *dacpid = strstr(name, "iTunes_Ctrl_");
if (dacpid) {
dacpid += strlen("iTunes_Ctrl_");
Expand Down

0 comments on commit 6ac6c30

Please sign in to comment.