module-rtp: improve logging priorities

Previous state was useless for real debug at the current implementation level
This commit is contained in:
Dmitry Sharshakov 2023-12-16 19:43:17 +03:00 committed by Wim Taymans
parent c75f6219dc
commit 1fe6feac56
6 changed files with 23 additions and 23 deletions

View file

@ -202,7 +202,7 @@ static void stream_send_packet(void *data, struct iovec *iov, size_t iovlen)
n = sendmsg(impl->rtp_fd, &msg, MSG_NOSIGNAL);
if (n < 0)
pw_log_debug("sendmsg() failed: %m");
pw_log_warn("sendmsg() failed: %m");
}
static void stream_state_changed(void *data, bool started, const char *error)