mgcp: Remove excessive logging for each frame

This commit is contained in:
Holger Hans Peter Freyther 2014-05-22 14:42:09 +02:00
parent cab6e7528c
commit f259bd8359
1 changed files with 0 additions and 12 deletions

View File

@ -579,22 +579,10 @@ int mgcp_send(struct mgcp_endpoint *endp, int dest, int is_rtp,
rtp_end = &endp->net_end;
rtp_state = &endp->bts_state;
tap_idx = MGCP_TAP_NET_OUT;
LOGP(DMGCP, LOGL_DEBUG, "delivering RTP to Network"
"via addr=%s, port=%u\n",
inet_ntoa(endp->net_end.addr),
ntohs(endp->net_end.rtp_port));
} else {
rtp_end = &endp->bts_end;
rtp_state = &endp->net_state;
tap_idx = MGCP_TAP_BTS_OUT;
LOGP(DMGCP, LOGL_DEBUG, "delivering RTP to BTS"
"via addr=%s, port=%u\n",
inet_ntoa(endp->bts_end.addr),
ntohs(endp->bts_end.rtp_port));
}
if (!rtp_end->output_enabled)