aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-09-29 14:38:55 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-09-29 14:38:57 +0200
commit53e566247d7f8c10ed1876bd4c966f245b80e994 (patch)
treef25fb0d1512c9c755806dfb2bbfe662dc4626b5a
parentfd356bdcd268a57194f1e2093ae079b0f30be448 (diff)
osmux: Drop logging of osmux internal counters
This way we have no more access to internal osmux structures. If those counters are needed in the future they can be counted by osmo-bts by means of adding rate counters to the caller of osmux_xfrm_input() and deliver_cb. Change-Id: Ib952437ea3aa2770c96bddb667491e7675a6a06e
-rw-r--r--src/common/osmux.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/common/osmux.c b/src/common/osmux.c
index caea4eca..cacc3aa5 100644
--- a/src/common/osmux.c
+++ b/src/common/osmux.c
@@ -130,13 +130,6 @@ static void osmux_handle_put(struct gsm_bts *bts, struct osmux_in_handle *in)
LOGP(DOSMUX, LOGL_INFO,
"Releasing unused osmux handle for %s\n",
osmo_sockaddr_to_str(&h->rem_addr));
- LOGP(DOSMUX, LOGL_INFO, "Stats: "
- "input RTP msgs: %u bytes: %" PRIu64 " "
- "output osmux msgs: %u bytes: %" PRIu64 "\n",
- in->stats.input_rtp_msgs,
- in->stats.input_rtp_bytes,
- in->stats.output_osmux_msgs,
- in->stats.output_osmux_bytes);
llist_del(&h->head);
TALLOC_FREE(h->in);
talloc_free(h);