osmux: Drop logging of osmux internal counters

This way we have no more access to internal osmux structures.
Moreover, we already have similar information in our rate_ctrs, so
there's no need to print those there.

Change-Id: I853e118f843070ea29b19e1b0fe56b52f267437a
This commit is contained in:
Pau Espin 2022-09-29 14:37:40 +02:00
parent 72eff2cf6a
commit cb25a0aa48
1 changed files with 0 additions and 7 deletions

View File

@ -136,13 +136,6 @@ static void osmux_handle_put(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);