pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bts/+/29532 )
Change subject: osmux: Drop logging of osmux internal counters ......................................................................
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 --- M src/common/osmux.c 1 file changed, 0 insertions(+), 7 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/common/osmux.c b/src/common/osmux.c index caea4ec..cacc3aa 100644 --- a/src/common/osmux.c +++ b/src/common/osmux.c @@ -130,13 +130,6 @@ 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);