]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
quieten a few debug messages
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Sun, 25 Jun 2023 10:39:32 +0000 (11:39 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Sun, 25 Jun 2023 10:39:32 +0000 (11:39 +0100)
player.c
rtsp.c

index 726c7d126328de612b6577608036d266697df720..c1739ee163a01ec7592f2d139abaee96395ae3b7 100644 (file)
--- a/player.c
+++ b/player.c
@@ -430,7 +430,7 @@ static void free_audio_buffers(rtsp_conn_info *conn) {
     free(conn->audio_buffer[i].data);
     buffers_released++;
   }
-  debug(1, "%" PRId64 " buffers allocated, %" PRId64 " buffers released.", buffers_allocated,
+  debug(2, "%" PRId64 " buffers allocated, %" PRId64 " buffers released.", buffers_allocated,
         buffers_released);
 }
 
diff --git a/rtsp.c b/rtsp.c
index 4db9c0b43d026b536f2265543a1a6424dcb9fead..0b680f8c2e008db95e99a280f6f9e0b0d8e822a7 100644 (file)
--- a/rtsp.c
+++ b/rtsp.c
@@ -1373,7 +1373,7 @@ enum rtsp_read_request_response rtsp_read_request(rtsp_conn_info *conn, rtsp_mes
 
     if (nread == 0) {
       // a blocking read that returns zero means eof -- implies connection closed by client
-      debug(1, "Connection %d: Connection closed by client.", conn->connection_number);
+      debug(3, "Connection %d: Connection closed by client.", conn->connection_number);
       reply = rtsp_read_request_response_channel_closed;
       // Note: the socket will be closed when the thread exits
       goto shutdown;