Skip to content

Commit

Permalink
quieten a few debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Jun 25, 2023
1 parent 257a84d commit 0193796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion player.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion rtsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0193796

Please sign in to comment.