From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Wed, 1 Sep 2021 15:54:19 +0000 (+0100) Subject: quieten a few debug messages X-Git-Tag: 4.1-dev~4^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ebc2517912c603f8a7ebad58465088385c8cf38;p=thirdparty%2Fshairport-sync.git quieten a few debug messages --- diff --git a/rtsp.c b/rtsp.c index 4b04aa83..4ffe4fb2 100644 --- a/rtsp.c +++ b/rtsp.c @@ -2260,8 +2260,6 @@ void handle_teardown_2(rtsp_conn_info *conn, __attribute__((unused)) rtsp_messag debug(2, "Connection %d: TEARDOWN Close Event Socket.", conn->connection_number); if (conn->event_socket) close(conn->event_socket); - - debug(2, "Connection %d: non-stream TEARDOWN complete", conn->connection_number); if (conn->airplay_gid != NULL) { free(conn->airplay_gid); conn->airplay_gid = NULL; @@ -2270,6 +2268,7 @@ void handle_teardown_2(rtsp_conn_info *conn, __attribute__((unused)) rtsp_messag config.airplay_statusflags &= (0xffffffff - (1 << 11)); // DeviceSupportsRelay build_bonjour_strings(conn); mdns_update(NULL, secondary_txt_records); + debug(2, "Connection %d: non-stream TEARDOWN complete", conn->connection_number); } //} else { // warn("Connection %d TEARDOWN received without having the player (no ANNOUNCE?)", @@ -2381,7 +2380,7 @@ void handle_setup_2(rtsp_conn_info *conn, rtsp_message *req, rtsp_message *resp) uint8_t value = 0; plist_get_bool_val(groupContainsGroupLeader, &value); conn->groupContainsGroupLeader = value; - debug(1, "Updated groupContainsGroupLeader to %u", conn->groupContainsGroupLeader); + debug(2, "Updated groupContainsGroupLeader to %u", conn->groupContainsGroupLeader); } else { debug(1, "No groupContainsGroupLeader in SETUP"); }