aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-29 08:50:18 +0200
committerHarald Welte <laforge@gnumonks.org>2018-03-29 08:50:18 +0200
commit8d3ea0e3ecd105d2cf363fae6b558c837e22d6c6 (patch)
tree23504597351c2401dcb9195e499e88e5ad1b4469 /library
parent9774e7ab04c21e9cab5d4db8e55dd6053b26e822 (diff)
RTP_Emulation: Make it less chatty in the log
Diffstat (limited to 'library')
-rw-r--r--library/RTP_Emulation.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/RTP_Emulation.ttcn b/library/RTP_Emulation.ttcn
index be4bcc43..4b8c3977 100644
--- a/library/RTP_Emulation.ttcn
+++ b/library/RTP_Emulation.ttcn
@@ -303,7 +303,7 @@ function f_main() runs on RTP_Emulation_CT
/* process received RTCP/RTP if receiver enabled */
[g_rx_enabled] RTP.receive(tr_rtp) -> value rx_rtp {
- log("RX RTP: ", rx_rtp);
+ //log("RX RTP: ", rx_rtp);
/* increment counters */
g_stats_rtp.num_pkts_rx := g_stats_rtp.num_pkts_rx+1;
g_stats_rtp.bytes_payload_rx := g_stats_rtp.bytes_payload_rx +
@@ -313,7 +313,7 @@ function f_main() runs on RTP_Emulation_CT
}
}
[g_rx_enabled] RTCP.receive(tr_rtcp) -> value rx_rtp {
- log("RX RTCP: ", rx_rtp);
+ //log("RX RTCP: ", rx_rtp);
g_stats_rtcp.num_pkts_rx := g_stats_rtcp.num_pkts_rx+1;
}