From: Russell Bryant Date: Tue, 14 Jun 2005 20:57:38 +0000 (+0000) Subject: remove my debug output, d'oh! :) X-Git-Tag: 1.0.11.1~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=200ca9631d4fbb611ac706d476df47c88150041b;p=thirdparty%2Fasterisk.git remove my debug output, d'oh! :) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5913 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 9e897bc581..8a1c3453a9 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -2234,10 +2234,8 @@ static struct ast_frame *sip_rtp_read(struct ast_channel *ast, struct sip_pvt *p } if ((p->dtmfmode & SIP_DTMF_INBAND) && p->vad) { f = ast_dsp_process(p->owner,p->vad,f); - if (f && (f->frametype == AST_FRAME_DTMF)) { + if (f && (f->frametype == AST_FRAME_DTMF)) ast_log(LOG_DEBUG, "Detected DTMF '%c'\n", f->subclass); - ast_log(LOG_NOTICE, "Detected inband DTMF '%c'\n", f->subclass); - } } } }