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);
}
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;