]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Quieten a debug message.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Thu, 14 Jul 2022 10:04:02 +0000 (11:04 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Thu, 14 Jul 2022 10:04:02 +0000 (11:04 +0100)
rtp.c

diff --git a/rtp.c b/rtp.c
index 61535053f0ef50943c1cf03fe1708c326847c953..c43ef2b8ab089cd457d1c952a08efdcec3e8f076 100644 (file)
--- a/rtp.c
+++ b/rtp.c
@@ -1566,9 +1566,9 @@ void rtp_event_receiver_cleanup_handler(void *arg) {
 void *rtp_event_receiver(void *arg) {
   rtsp_conn_info *conn = (rtsp_conn_info *)arg;
   if (conn->airplay_stream_category == remote_control_stream)
-    debug(1, "Connection %d (RC): AP2 Event Receiver started", conn->connection_number);
+    debug(2, "Connection %d (RC): AP2 Event Receiver started", conn->connection_number);
   else
-    debug(1, "Connection %d: AP2 Event Receiver started", conn->connection_number);
+    debug(2, "Connection %d: AP2 Event Receiver started", conn->connection_number);
   pthread_cleanup_push(rtp_event_receiver_cleanup_handler, arg);
 
   listen(conn->event_socket, 5);