From 0121bdc4759f7ab06611a8d91716ecf79263314b Mon Sep 17 00:00:00 2001 From: Carlos Rafael Giani Date: Mon, 1 Dec 2025 12:14:18 +0100 Subject: [PATCH] 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. --- src/modules/module-rtp/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-rtp/audio.c b/src/modules/module-rtp/audio.c index e03ae7ce9..085f3bae8 100644 --- a/src/modules/module-rtp/audio.c +++ b/src/modules/module-rtp/audio.c @@ -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); }