[svn-commits] murf: branch murf/bug6683 r69946 - /team/murf/bug6683/channels/chan_zap.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jun 19 10:36:21 CDT 2007
Author: murf
Date: Tue Jun 19 10:36:20 2007
New Revision: 69946
URL: http://svn.digium.com/view/asterisk?view=rev&rev=69946
Log:
Cleared out some of the debug messages, but not all
Modified:
team/murf/bug6683/channels/chan_zap.c
Modified: team/murf/bug6683/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/team/murf/bug6683/channels/chan_zap.c?view=diff&rev=69946&r1=69945&r2=69946
==============================================================================
--- team/murf/bug6683/channels/chan_zap.c (original)
+++ team/murf/bug6683/channels/chan_zap.c Tue Jun 19 10:36:20 2007
@@ -6323,7 +6323,6 @@
* and we're set to use a polarity reversal to trigger the start of caller id,
* grab the caller id and wait for ringing to start... */
} else if (p->use_callerid && (chan->_state == AST_STATE_PRERING && (p->cid_start == CID_START_POLARITY || p->cid_start == CID_START_POLARITY_IN))) {
- ast_log(LOG_DEBUG,"In state prering");
/* If set to use DTMF CID signalling, listen for DTMF */
if (p->cid_signalling == CID_SIG_DTMF) {
int i = 0;
@@ -6366,11 +6365,9 @@
number = NULL;
/* If set to use V23 Signalling, launch our FSK gubbins and listen for it */
} else if ((p->cid_signalling == CID_SIG_V23) || (p->cid_signalling == CID_SIG_V23_JP)) {
- ast_log(LOG_DEBUG,"SIG_V23\n");
cs = callerid_new(p->cid_signalling);
if (cs) {
samples = 0;
-
#if 1
bump_gains(p);
#endif
@@ -6574,8 +6571,6 @@
if (p->cid_signalling == CID_SIG_DTMF) {
int i = 0;
cs = NULL;
- ast_log(LOG_DEBUG, "Receiving DTMF cid on "
- "channel %s\n", chan->name);
zt_setlinear(p->subs[index].zfd, 0);
res = 2000;
for (;;) {
@@ -6602,7 +6597,6 @@
dtmfbuf[i] = '\0';
zt_setlinear(p->subs[index].zfd, p->subs[index].linear);
/* Got cid and ring. */
- ast_log(LOG_DEBUG, "CID got string '%s'\n", dtmfbuf);
callerid_get_dtmf(dtmfbuf, dtmfcid, &flags);
ast_log(LOG_DEBUG, "CID is '%s', flags %d\n",
dtmfcid, flags);
More information about the svn-commits
mailing list