[asterisk-commits] jrose: trunk r334907 - in /trunk/main: cdr.c pbx.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 8 08:36:15 CDT 2011


Author: jrose
Date: Thu Sep  8 08:36:11 2011
New Revision: 334907

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=334907
Log:
Removes colorful verb statements erroneously commited with r332760

Modified:
    trunk/main/cdr.c
    trunk/main/pbx.c

Modified: trunk/main/cdr.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/cdr.c?view=diff&rev=334907&r1=334906&r2=334907
==============================================================================
--- trunk/main/cdr.c (original)
+++ trunk/main/cdr.c Thu Sep  8 08:36:11 2011
@@ -788,9 +788,6 @@
 {
 	char *chan;
 
-	ast_verb (1, "congestion value: %d\n  INYOURFACE", congestion);
-
-
 	/* if congestion log is disabled, pass the buck to ast_cdr_failed */
 	if (!congestion) {
 		ast_cdr_failed(cdr);
@@ -1568,7 +1565,6 @@
 			unanswered = ast_true(unanswered_value);
 		}
 		if ((congestion_value = ast_variable_retrieve(config, "general", "congestion"))) {
-			ast_verb(1, "INTHEFACEPUNCH!\n");
 			congestion = ast_true(congestion_value);
 		}
 		if ((batched_value = ast_variable_retrieve(config, "general", "batch"))) {

Modified: trunk/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/pbx.c?view=diff&rev=334907&r1=334906&r2=334907
==============================================================================
--- trunk/main/pbx.c (original)
+++ trunk/main/pbx.c Thu Sep  8 08:36:11 2011
@@ -9332,14 +9332,11 @@
  */
 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);




More information about the asterisk-commits mailing list