From b4bf412a7ab9f7af3678049a6c83836624ddab3f Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 26 Jun 2024 14:18:30 +0200 Subject: [PATCH] print RR more briefly The line was needlessly chatty and thus harder to read. Currently, it is a bit more techical but (IMO) somehow easier to read. Since it is printed in VERBOSE mode or higher, there should be no problem. --- src/rtp/rtp_callback.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rtp/rtp_callback.c b/src/rtp/rtp_callback.c index 5e74e9353..bbc45716c 100644 --- a/src/rtp/rtp_callback.c +++ b/src/rtp/rtp_callback.c @@ -130,7 +130,8 @@ static void process_rr(struct rtp *session, rtp_event * e) } if(packet_count < 1) packet_count = 1; - log_msg(LOG_LEVEL_INFO, "Receiver of 0x%08x reports RTT=%d usec, loss %.2f%% (out of %d packets)\n", + log_msg(LOG_LEVEL_INFO, + "RR of 0x%08x: RTT=%d usec, loss %.2f%% (of %d pkts)\n", r->ssrc, RTT, fract_lost, packet_count); } }