module-rtp: Lower missing timeout log line from warn to trace

A warning is not warranted in this case, and this log line can spam
the logs, so set it to trace.
This commit is contained in:
Carlos Rafael Giani 2025-12-01 12:14:18 +01:00
parent 5b86e3d418
commit 0121bdc475

View file

@ -606,7 +606,7 @@ static void rtp_audio_stop_timer(struct impl *impl)
static void rtp_audio_flush_timeout(struct impl *impl, uint64_t expirations)
{
if (expirations > 1)
pw_log_warn("missing timeout %"PRIu64, expirations);
pw_log_trace("missing timeout %"PRIu64, expirations);
rtp_audio_flush_packets(impl, expirations, 0);
}