summaryrefslogtreecommitdiff
path: root/main/pbx.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-09-08 13:36:11 +0000
committerJonathan Rose <jrose@digium.com>2011-09-08 13:36:11 +0000
commiteb14a692095b162a7e0f1ffac84bae043a6c93a2 (patch)
tree1af1338d0f0f3268407feb60f4544b999a42c1e4 /main/pbx.c
parent272afe432b2068125261ad4a32b08f1410e3284f (diff)
Removes colorful verb statements erroneously commited with r332760
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@334907 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 714085195..90f6d5a89 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -9332,14 +9332,11 @@ static int pbx_builtin_busy(struct ast_channel *chan, const char *data)
*/
static int pbx_builtin_congestion(struct ast_channel *chan, const char *data)
{
- ast_verb(1, "pbx_builtin_congestion HITINTHEFACE!\n");
- ast_verb(1, "AST_STATE = %d INTHEFACE\n", chan->_state);
ast_indicate(chan, AST_CONTROL_CONGESTION);
/* Don't change state of an UP channel, just indicate
congestion in audio */
if (chan->_state != AST_STATE_UP) {
ast_setstate(chan, AST_STATE_BUSY);
- ast_verb(1, "ast_cdr_congestion INTHEFACE\n");
ast_cdr_congestion(chan->cdr);
}
wait_for_hangup(chan, data);