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
diff --git a/src/libosmo-mgcp/mgcp_osmux.c b/src/libosmo-mgcp/mgcp_osmux.c
index 5c3ddbf..b8a1c4b 100644
--- a/src/libosmo-mgcp/mgcp_osmux.c
+++ b/src/libosmo-mgcp/mgcp_osmux.c
@@ -136,13 +136,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);